From 7faa72b9c00024fa4fb384be8fb9343732581b3d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 16 Jul 2013 19:26:17 +0000 Subject: [PATCH] Properly qualify shared_ptr. git-svn-id: https://svn.dealii.org/trunk@30019 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/base/work_stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/base/work_stream.h b/deal.II/include/deal.II/base/work_stream.h index e0e2221fd6..150e6fe437 100644 --- a/deal.II/include/deal.II/base/work_stream.h +++ b/deal.II/include/deal.II/base/work_stream.h @@ -483,7 +483,7 @@ namespace WorkStream scratch_data = new ScratchData(*current_item->sample_scratch_data); typename ItemType::ScratchDataList::value_type - new_scratch_object = { std::shared_ptr(scratch_data), true }; + new_scratch_object = { std_cxx1x::shared_ptr(scratch_data), true }; scratch_data_list.push_back (new_scratch_object); } } -- 2.39.5