summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/stream-extraction.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/tree/stream-extraction.hxx')
-rw-r--r--libxsd/xsd/cxx/tree/stream-extraction.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/libxsd/xsd/cxx/tree/stream-extraction.hxx b/libxsd/xsd/cxx/tree/stream-extraction.hxx
index 861358d..0052054 100644
--- a/libxsd/xsd/cxx/tree/stream-extraction.hxx
+++ b/libxsd/xsd/cxx/tree/stream-extraction.hxx
@@ -152,7 +152,7 @@ namespace xsd
template <typename S>
inline nmtokens<C, B, nmtoken>::
nmtokens (istream<S>& s, flags f, container* c)
- : B (s, f, c), base_type (s, f, c)
+ : B (s, f, c), base_type (s, f, this)
{
}
@@ -219,7 +219,7 @@ namespace xsd
template <typename S>
inline idrefs<C, B, idref>::
idrefs (istream<S>& s, flags f, container* c)
- : B (s, f, c), base_type (s, f, c)
+ : B (s, f, c), base_type (s, f, this)
{
}
@@ -291,7 +291,7 @@ namespace xsd
template <typename S>
inline entities<C, B, entity>::
entities (istream<S>& s, flags f, container* c)
- : B (s, f, c), base_type (s, f, c)
+ : B (s, f, c), base_type (s, f, this)
{
}
}