Skip to content
Snippets Groups Projects
Commit 25f46e62 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

remove two spurious colons

[[Imported from SVN: r7393]]
parent 54ba0310
No related branches found
No related tags found
No related merge requests found
......@@ -23,13 +23,13 @@ public:
MonotoneMGStep() {}
MonotoneMGStep(int numLevels)
DUNE_DEPRECATED_MSG("The number of levels is no longer set explicitely, but instead inferred from the number of transfer operators. Just erase the number of levels from the argument list in your constructor call.") :
DUNE_DEPRECATED_MSG("The number of levels is no longer set explicitely, but instead inferred from the number of transfer operators. Just erase the number of levels from the argument list in your constructor call.")
{}
MonotoneMGStep(const MatrixType& mat,
VectorType& x,
VectorType& rhs, int numLevels)
DUNE_DEPRECATED_MSG("The number of levels is no longer set explicitely, but instead inferred from the number of transfer operators. Just erase the number of levels from the argument list in your constructor call.") :
DUNE_DEPRECATED_MSG("The number of levels is no longer set explicitely, but instead inferred from the number of transfer operators. Just erase the number of levels from the argument list in your constructor call.")
: MultigridStep<MatrixType, VectorType>(mat, x, rhs, numLevels)
{
oldCritical.resize(x.size(), false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment