summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/stream-extraction.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-12-01 11:05:10 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-12-01 11:05:10 +0200
commit899728d08993676b01e722a28f60efb2d076534d (patch)
treeb7ad14010ad75bdc08ed3b9e4e4fe6a5f6371b4f /libxsd/xsd/cxx/tree/stream-extraction.hxx
parent238774bc0a8a1c07d5fec89135a766a3e3d8494d (diff)
Make the list type a container for its elements
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)
{
}
}