From bcf18a8e109c4165efec89c17c2348b68c8488d5 Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Wed, 9 Jan 2019 12:19:26 +0100
Subject: [PATCH] Fix misplaced parentheses

---
 src/compute-disc-error.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compute-disc-error.cc b/src/compute-disc-error.cc
index 52bd8faf..97cabf40 100644
--- a/src/compute-disc-error.cc
+++ b/src/compute-disc-error.cc
@@ -394,6 +394,7 @@ void measureDiscreteEOC(const GridView gridView,
       h1ErrorSquared += integrationElement * qp.weight() * derDiff.frobenius_norm2();
 
     }
+  }
 
   std::cout << "levels: " << gridView.grid().maxLevel()+1
             << "      "
@@ -402,7 +403,6 @@ void measureDiscreteEOC(const GridView gridView,
             << "h^1 error: " << std::sqrt(h1ErrorSquared)
             << std::endl;
   }
-  }
 }
 
 template <class GridView, int order, class TargetSpace>
-- 
GitLab