From 26a39c88c2ee391d6dfd9399d278a7a6f64ec385 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 13 Jan 2009 04:02:33 +0000 Subject: [PATCH] Use new namespace std_cxx0x. git-svn-id: https://svn.dealii.org/trunk@18198 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/step-22.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index 205b8cc518..644c745783 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -3,7 +3,7 @@ /* $Id$ */ /* */ -/* Copyright (C) 2008 by the deal.II authors */ +/* Copyright (C) 2008, 2009 by the deal.II authors */ /* */ /* This file is subject to QPL and may not be distributed */ /* without copyright and license information. Please refer */ @@ -159,7 +159,7 @@ class StokesProblem // memory leak, and can never produce a // dangling pointer to an already // destroyed object: - boost::shared_ptr::type> A_preconditioner; + std_cxx0x::shared_ptr::type> A_preconditioner; }; // @sect3{Boundary values and right hand side} @@ -969,7 +969,7 @@ void StokesProblem::assemble_system () std::cout << " Computing preconditioner..." << std::endl << std::flush; A_preconditioner - = boost::shared_ptr::type>(new typename InnerPreconditioner::type()); + = std_cxx0x::shared_ptr::type>(new typename InnerPreconditioner::type()); A_preconditioner->initialize (system_matrix.block(0,0), typename InnerPreconditioner::type::AdditionalData()); -- 2.39.5