summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/stream-extraction.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-06-02 04:27:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-06-02 04:27:02 +0200
commit4d3692a500bd5cf2bd500e1eb0632850ca8260ab (patch)
tree410bb4070e6e766531d13e3481156f1013bd08dc /libxsd/xsd/cxx/tree/stream-extraction.hxx
parent0d4790ae071990d18883c0fb799b938ff53b5c62 (diff)
Do not store flags in containers
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 d5367c8..e8f1368 100644
--- a/libxsd/xsd/cxx/tree/stream-extraction.hxx
+++ b/libxsd/xsd/cxx/tree/stream-extraction.hxx
@@ -55,7 +55,7 @@ namespace xsd
template <typename S>
list<T, C, ST, false>::
list (istream<S>& s, flags f, container* c)
- : sequence<T> (f, c)
+ : sequence<T> (c)
{
std::size_t size;
istream_common::as_size<std::size_t> as_size (size);
@@ -76,8 +76,8 @@ namespace xsd
template <typename T, typename C, schema_type::value ST>
template <typename S>
list<T, C, ST, true>::
- list (istream<S>& s, flags f, container* c)
- : sequence<T> (f, c)
+ list (istream<S>& s, flags, container* c)
+ : sequence<T> (c)
{
std::size_t size;
istream_common::as_size<std::size_t> as_size (size);