use std::remove_const instead of Dune::remove_const

This commit is contained in:
Arne Morten Kvarving 2017-10-05 11:32:34 +02:00
parent cdb8220c9b
commit 167147acc4
2 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ createAMGPreconditionerPointer( Op& opA, const double relax, const P& comm, std:
//! \brief The type describing the parallel information
typedef P ParallelInformation;
//! \brief The matrix type the preconditioner is for.
typedef typename Dune::remove_const<M>::type matrix_type;
typedef typename std::remove_const<M>::type matrix_type;
//! \brief The domain type of the preconditioner.
typedef X domain_type;
//! \brief The range type of the preconditioner.

View File

@ -168,7 +168,7 @@ class ParallelOverlappingILU0
public:
//! \brief The matrix type the preconditioner is for.
typedef typename Dune::remove_const<Matrix>::type matrix_type;
typedef typename std::remove_const<Matrix>::type matrix_type;
//! \brief The domain type of the preconditioner.
typedef Domain domain_type;
//! \brief The range type of the preconditioner.