summaryrefslogtreecommitdiff
path: root/tests/cxx/parser/polymorphism/same-type
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-11 17:01:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-11 17:01:02 +0200
commitd4a78b31a1a045471c2fe12d2618d9d5edf78fb2 (patch)
tree090738555bb18f9a22ad7916f34bcd50273e9cb2 /tests/cxx/parser/polymorphism/same-type
parent7c064687415c895334650321bd5bc34453b0ce38 (diff)
Fix recursive polymorphic parsing in C++/Parser
New test: cxx/parser/polymorphism/recursive.
Diffstat (limited to 'tests/cxx/parser/polymorphism/same-type')
-rw-r--r--tests/cxx/parser/polymorphism/same-type/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cxx/parser/polymorphism/same-type/driver.cxx b/tests/cxx/parser/polymorphism/same-type/driver.cxx
index 086d2fb..0163709 100644
--- a/tests/cxx/parser/polymorphism/same-type/driver.cxx
+++ b/tests/cxx/parser/polymorphism/same-type/driver.cxx
@@ -45,7 +45,7 @@ main (int argc, char* argv[])
base_p.parsers (string_p);
type_p.parsers (base_p);
- xml_schema::document doc_p (type_p, "test", "root");
+ xml_schema::document doc_p (type_p, "test", "root", true);
type_p.pre ();
doc_p.parse (argv[1]);