From def4e26e5ec071f26e0f9400ef7eba26cecc26ab Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Fri, 16 Dec 2011 16:10:48 +0100
Subject: [PATCH] Remove obsolete typedef

---
 src/one-body-sample.cc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc
index dd070af0..7a3cd9a9 100644
--- a/src/one-body-sample.cc
+++ b/src/one-body-sample.cc
@@ -343,12 +343,11 @@ int main(int argc, char *argv[]) {
         // }}}
 
         // // Now the actual nonlinear solver
-        typedef MyBlockProblemType TNNMGProblemType;
         typedef GenericNonlinearGS<MyBlockProblemType> NonlinearSmootherType;
         typedef TruncatedNonsmoothNewtonMultigrid<
-            TNNMGProblemType, NonlinearSmootherType> TNNMGStepType;
+            MyBlockProblemType, NonlinearSmootherType> TNNMGStepType;
 
-        TNNMGProblemType *tnnmgProblem = myBlockProblem;
+        MyBlockProblemType *tnnmgProblem = myBlockProblem;
         auto nonlinearSmoother = new NonlinearSmootherType;
 
         auto multigridStep =
-- 
GitLab