mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
use std::remove_const instead of Dune::remove_const
This commit is contained in:
@@ -376,7 +376,7 @@ createAMGPreconditionerPointer( Op& opA, const double relax, const P& comm, std:
|
|||||||
//! \brief The type describing the parallel information
|
//! \brief The type describing the parallel information
|
||||||
typedef P ParallelInformation;
|
typedef P ParallelInformation;
|
||||||
//! \brief The matrix type the preconditioner is for.
|
//! \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.
|
//! \brief The domain type of the preconditioner.
|
||||||
typedef X domain_type;
|
typedef X domain_type;
|
||||||
//! \brief The range type of the preconditioner.
|
//! \brief The range type of the preconditioner.
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ class ParallelOverlappingILU0
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
//! \brief The matrix type the preconditioner is for.
|
//! \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.
|
//! \brief The domain type of the preconditioner.
|
||||||
typedef Domain domain_type;
|
typedef Domain domain_type;
|
||||||
//! \brief The range type of the preconditioner.
|
//! \brief The range type of the preconditioner.
|
||||||
|
|||||||
Reference in New Issue
Block a user