From 4e11bfc9d143ff9ae02a43ad7ac848b5db0d1052 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 7 May 2010 20:40:16 +0000 Subject: [PATCH] Use namespace std_cxx1x instead of boost. git-svn-id: https://svn.dealii.org/trunk@21099 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/named_data.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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