From f1cef2e60d91bfe62e17fe499a957b9e7806ff6a Mon Sep 17 00:00:00 2001
From: Simon Praetorius <simon.praetorius@tu-dresden.de>
Date: Mon, 10 Jun 2019 17:17:06 +0200
Subject: [PATCH] corrected constructor problem in gcc6

---
 test/UniqueBorderPartitionTest.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/UniqueBorderPartitionTest.cpp b/test/UniqueBorderPartitionTest.cpp
index e7b9e03e..e23f9522 100644
--- a/test/UniqueBorderPartitionTest.cpp
+++ b/test/UniqueBorderPartitionTest.cpp
@@ -28,9 +28,9 @@ int main(int argc, char** argv)
 {
   Environment env(argc, argv);
 
-  auto grid1 = Dune::YaspGrid<2>({1.0, 1.0}, {8,8}, 0, 0); // no overlap
-  auto grid2 = Dune::YaspGrid<2>({1.0, 1.0}, {8,8}, 0, 1); // overlap = 1
-  auto grid3 = Dune::YaspGrid<3>({1.0, 1.0, 1.0}, {8,8,8}, 0, 1); // overlap = 1
+  Dune::YaspGrid<2> grid1({1.0, 1.0}, {8,8}, 0, 0); // no overlap
+  Dune::YaspGrid<2> grid2({1.0, 1.0}, {8,8}, 0, 1); // overlap = 1
+  Dune::YaspGrid<3> grid3({1.0, 1.0, 1.0}, {8,8,8}, 0, 1); // overlap = 1
 
   test(grid1.leafGridView());
   test(grid2.leafGridView());
-- 
GitLab