Skip to content
Snippets Groups Projects
Commit d22afd2f authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

IterativeSolver: move implementation in Dune::Solvers namespace

Otherwise one gets a confusing error message from the compiler when
dune-istl's Dune::IterativeSolver is imported into the global
namespace before dune-solvers's iterativesolver.hh (and thus also
iterativesolver.cc) is included.
parent a845f04e
No related branches found
No related tags found
1 merge request!22IterativeSolver: move implementation in Dune::Solvers namespace
Pipeline #
......@@ -9,6 +9,9 @@
#include <dune/matrix-vector/genericvectortools.hh>
namespace Dune {
namespace Solvers {
template <class VectorType, class BitVectorType>
void IterativeSolver<VectorType, BitVectorType>::check() const
{
......@@ -37,3 +40,6 @@ void IterativeSolver<VectorType, BitVectorType>::writeIterate(const VectorType&
file.close();
}
} /* namespace Solvers */
} /* namespace Dune */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment