From 0fdf19714613a82a184f4f6e75fb9a4f9b62f18a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 19 Jan 2014 10:05:08 +0200 Subject: Use std::unique_ptr instead of std::auto_ptr in C++11 mode --- tests/cxx/tree/built-in/driver.cxx | 19 ++++++++++--------- tests/cxx/tree/built-in/makefile | 5 +++++ 2 files changed, 15 insertions(+), 9 deletions(-) (limited to 'tests/cxx/tree/built-in') diff --git a/tests/cxx/tree/built-in/driver.cxx b/tests/cxx/tree/built-in/driver.cxx index fee634a..f1d02a5 100644 --- a/tests/cxx/tree/built-in/driver.cxx +++ b/tests/cxx/tree/built-in/driver.cxx @@ -6,7 +6,7 @@ // Test built-in type mapping. // -#include // std::auto_ptr +#include // std::auto_ptr/unique_ptr #include #include @@ -15,7 +15,6 @@ using std::cerr; using std::endl; -using std::auto_ptr; int main (int argc, char* argv[]) @@ -26,12 +25,13 @@ main (int argc, char* argv[]) return 1; } - auto_ptr elements (xmlns::test::elements (argv[1])); + XSD_AUTO_PTR elements ( + xmlns::test::elements (argv[1])); - auto_ptr attributes ( + XSD_AUTO_PTR attributes ( xmlns::test::attributes (argv[2])); - auto_ptr inherited ( + XSD_AUTO_PTR inherited ( xmlns::test::inherited (argv[3])); cerr << "elements: " << *elements << endl @@ -53,13 +53,14 @@ main (int argc, char* argv[]) xmlns::test::elements (ostr, *elements, map); std::istringstream istr (ostr.str ()); - auto_ptr elements1 (xmlns::test::elements (istr)); + XSD_AUTO_PTR elements1 ( + xmlns::test::elements (istr)); std::ostringstream ostr1; xmlns::test::elements (ostr1, *elements1, map); if (ostr.str () != ostr1.str ()) - return 1; + return 1; } { @@ -67,7 +68,7 @@ main (int argc, char* argv[]) xmlns::test::attributes (ostr, *attributes, map); std::istringstream istr (ostr.str ()); - auto_ptr attributes1 ( + XSD_AUTO_PTR attributes1 ( xmlns::test::attributes (istr)); std::ostringstream ostr1; @@ -82,7 +83,7 @@ main (int argc, char* argv[]) xmlns::test::inherited (ostr, *inherited, map); std::istringstream istr (ostr.str ()); - auto_ptr inherited1 ( + XSD_AUTO_PTR inherited1 ( xmlns::test::inherited (istr)); std::ostringstream ostr1; diff --git a/tests/cxx/tree/built-in/makefile b/tests/cxx/tree/built-in/makefile index ad8aba1..b94930f 100644 --- a/tests/cxx/tree/built-in/makefile +++ b/tests/cxx/tree/built-in/makefile @@ -89,7 +89,12 @@ endif $(call include,$(bld_root)/cxx/o-e.make) $(call include,$(bld_root)/cxx/cxx-o.make) $(call include,$(bld_root)/cxx/cxx-d.make) + +$(call include,$(bld_root)/cxx/standard.make) # cxx_standard +ifdef cxx_standard +$(gen): xsd_options += --std $(cxx_standard) $(call include,$(scf_root)/xsd/tree/xsd-cxx.make) +endif # Dependencies. # -- cgit v1.1