From: Wolfgang Bangerth Date: Fri, 7 May 2010 20:40:16 +0000 (+0000) Subject: Use namespace std_cxx1x instead of boost. X-Git-Tag: v8.0.0~6130 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e11bfc9d143ff9ae02a43ad7ac848b5db0d1052;p=dealii.git Use namespace std_cxx1x instead of boost. git-svn-id: https://svn.dealii.org/trunk@21099 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/named_data.cc b/tests/base/named_data.cc index 5a71a3656c..a5f9cd2a2f 100644 --- a/tests/base/named_data.cc +++ b/tests/base/named_data.cc @@ -53,17 +53,17 @@ test_selector(const NamedData& data) void test_shared_pointer() { - NamedData > data; + NamedData > data; deallog << "const" << data.is_const() << std::endl; - boost::shared_ptr p = boost::shared_ptr(new double); + std_cxx1x::shared_ptr p = std_cxx1x::shared_ptr(new double); data.add(p, "P1"); - p = boost::shared_ptr(new double); + p = std_cxx1x::shared_ptr(new double); data.add(p, "P2"); - p = boost::shared_ptr(new double); + p = std_cxx1x::shared_ptr(new double); data.add(p, "P3"); - p = boost::shared_ptr(new double); + p = std_cxx1x::shared_ptr(new double); data.add(p, "P4"); - p = boost::shared_ptr(new double); + p = std_cxx1x::shared_ptr(new double); data.add(p, "P5"); for (unsigned int i=0;i