summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/expat
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-06 15:22:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-06 15:22:19 +0200
commita6f85da576d5d1fafce01bb6c3070c408adba913 (patch)
treeb400e9b423f2a17423575470acef9af0bbd31df2 /libxsd/xsd/cxx/parser/expat
parent0cb48a5a8a9cdfe9ebcfc6c3eb007774395132b5 (diff)
Fix template argument-dependant lookup errors (GCC 4.7 and Clang)
Diffstat (limited to 'libxsd/xsd/cxx/parser/expat')
-rw-r--r--libxsd/xsd/cxx/parser/expat/elements.txx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libxsd/xsd/cxx/parser/expat/elements.txx b/libxsd/xsd/cxx/parser/expat/elements.txx
index c33f2c5..21dff58 100644
--- a/libxsd/xsd/cxx/parser/expat/elements.txx
+++ b/libxsd/xsd/cxx/parser/expat/elements.txx
@@ -594,7 +594,7 @@ namespace xsd
{
try
{
- start_element (ns, name, 0);
+ this->start_element (ns, name, 0);
}
catch (const schema_exception<C>& e)
{
@@ -621,7 +621,7 @@ namespace xsd
{
try
{
- start_element (ns, name, 0);
+ this->start_element (ns, name, 0);
}
catch (const schema_exception<C>& e)
{
@@ -693,7 +693,7 @@ namespace xsd
}
ro_string<C> ro_id (id);
- start_element (ns, name, &ro_id);
+ this->start_element (ns, name, &ro_id);
}
catch (const schema_exception<C>& e)
{
@@ -713,7 +713,7 @@ namespace xsd
try
{
- attribute (ns, name, value);
+ this->attribute (ns, name, value);
}
catch (const schema_exception<C>& e)
{
@@ -748,7 +748,7 @@ namespace xsd
try
{
- end_element (ns, name);
+ this->end_element (ns, name);
}
catch (const schema_exception<C>& e)
{
@@ -777,7 +777,7 @@ namespace xsd
try
{
- characters (str);
+ this->characters (str);
}
catch (const schema_exception<C>& e)
{