From 25f46e62aa0107619ec1415e4bb7add704694620 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Sun, 11 Nov 2012 11:26:42 +0000
Subject: [PATCH] remove two spurious colons

[[Imported from SVN: r7393]]
---
 dune/solvers/iterationsteps/mmgstep.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/solvers/iterationsteps/mmgstep.hh b/dune/solvers/iterationsteps/mmgstep.hh
index cd844592..1acdc5c4 100644
--- a/dune/solvers/iterationsteps/mmgstep.hh
+++ b/dune/solvers/iterationsteps/mmgstep.hh
@@ -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);
-- 
GitLab