From 181dfecbc682b7896ca74d1247be477d2b28c0f3 Mon Sep 17 00:00:00 2001 From: Markus Blatt <mblatt@dune-project.org> Date: Wed, 18 Mar 2009 16:30:08 +0000 Subject: [PATCH] Removed olivers using tr1 directives. This fixes flyspray issue 525 Please merge to release. [[Imported from SVN: r1003]] --- istl/paamg/test/graphtest.cc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/istl/paamg/test/graphtest.cc b/istl/paamg/test/graphtest.cc index a22f8c654..64375336a 100644 --- a/istl/paamg/test/graphtest.cc +++ b/istl/paamg/test/graphtest.cc @@ -349,13 +349,8 @@ void setupAnisotropic(Dune::BCRSMatrix<B>& A, double eps) template<class N, class G> void printWeightedGraph(G& graph, std::ostream& os, const N& norm=N()) { -#ifdef HAVE_TR1_TYPE_TRAITS - using std::tr1::remove_const; - using std::tr1::is_same; -#else using Dune::remove_const; using Dune::is_same; -#endif using Dune::SelectType; typedef typename remove_const<G>::type Mutable; @@ -380,13 +375,8 @@ void printWeightedGraph(G& graph, std::ostream& os, const N& norm=N()) template<class G> void printPropertiesGraph(G& graph, std::ostream& os) { -#ifdef HAVE_TR1_TYPE_TRAITS - using std::tr1::remove_const; - using std::tr1::is_same; -#else using Dune::remove_const; using Dune::is_same; -#endif using Dune::SelectType; typedef typename remove_const<G>::type Mutable; @@ -411,13 +401,8 @@ void printPropertiesGraph(G& graph, std::ostream& os) template<class G> void printGraph(G& graph, std::ostream& os) { -#ifdef HAVE_TR1_TYPE_TRAITS - using std::tr1::remove_const; - using std::tr1::is_same; -#else using Dune::remove_const; using Dune::is_same; -#endif using Dune::SelectType; typedef typename remove_const<G>::type Mutable; -- GitLab