From 873f062053fc312cd1097e2011d6c0a79ad60922 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkovsky@mmg.fjfi.cvut.cz>
Date: Thu, 2 Jan 2020 14:20:50 +0100
Subject: [PATCH] Added empty setup method into DistributedMesh

Otherwise SolverStarter does not work correctly.
---
 src/TNL/Meshes/DistributedMeshes/DistributedMesh.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/TNL/Meshes/DistributedMeshes/DistributedMesh.h b/src/TNL/Meshes/DistributedMeshes/DistributedMesh.h
index c029cdc50f..a6e7c01f98 100644
--- a/src/TNL/Meshes/DistributedMeshes/DistributedMesh.h
+++ b/src/TNL/Meshes/DistributedMeshes/DistributedMesh.h
@@ -27,6 +27,12 @@ public:
    {
       return false;
    };
+
+   bool setup( const Config::ParameterContainer& parameters,
+               const String& prefix )
+   {
+      return false;
+   }
 };
 
 } // namespace DistributedMeshes
-- 
GitLab