From 060fcce9a64c5eb3de784b269f3dc86b326154ba Mon Sep 17 00:00:00 2001
From: "Dmitry Yu. Naumov" <github@naumov.de>
Date: Tue, 19 Jun 2018 14:30:49 +0200
Subject: [PATCH] Add missing ; after logog output.

New versions of logog do not have an implicit ; after the macros.
---
 Applications/ApplicationsLib/ProjectData.cpp       | 2 +-
 Applications/Utils/MeshEdit/AddTopLayer.cpp        | 2 +-
 Applications/Utils/MeshEdit/UnityPreprocessing.cpp | 4 ++--
 Applications/Utils/MeshEdit/checkMesh.cpp          | 8 +++++---
 Applications/Utils/MeshEdit/moveMeshNodes.cpp      | 2 +-
 GeoLib/GEOObjects.cpp                              | 2 +-
 MeshLib/IO/VtkIO/VtuInterface.cpp                  | 2 +-
 MeshLib/MeshEditing/MeshRevision.cpp               | 2 +-
 ProcessLib/CreateProcessData.cpp                   | 2 +-
 ProcessLib/UncoupledProcessesTimeLoop.cpp          | 2 +-
 10 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/Applications/ApplicationsLib/ProjectData.cpp b/Applications/ApplicationsLib/ProjectData.cpp
index 561d6e043c8..99536b2847c 100644
--- a/Applications/ApplicationsLib/ProjectData.cpp
+++ b/Applications/ApplicationsLib/ProjectData.cpp
@@ -270,7 +270,7 @@ bool ProjectData::isMeshNameUniqueAndProvideUniqueName(std::string& name) const
 void ProjectData::parseProcessVariables(
     BaseLib::ConfigTree const& process_variables_config)
 {
-    DBUG("Parse process variables:")
+    DBUG("Parse process variables:");
 
     if (_mesh_vec.empty() || _mesh_vec[0] == nullptr)
     {
diff --git a/Applications/Utils/MeshEdit/AddTopLayer.cpp b/Applications/Utils/MeshEdit/AddTopLayer.cpp
index acf6952a3e9..c51074da408 100644
--- a/Applications/Utils/MeshEdit/AddTopLayer.cpp
+++ b/Applications/Utils/MeshEdit/AddTopLayer.cpp
@@ -61,7 +61,7 @@ int main (int argc, char* argv[])
     std::unique_ptr<MeshLib::Mesh> result(MeshLib::addTopLayerToMesh(
         *subsfc_mesh, layer_thickness_arg.getValue(), mesh_out_arg.getValue()));
     if (!result) {
-        ERR("Failure while adding top layer.")
+        ERR("Failure while adding top layer.");
         return EXIT_FAILURE;
     }
 
diff --git a/Applications/Utils/MeshEdit/UnityPreprocessing.cpp b/Applications/Utils/MeshEdit/UnityPreprocessing.cpp
index 273a0d17681..f455a7e35ce 100644
--- a/Applications/Utils/MeshEdit/UnityPreprocessing.cpp
+++ b/Applications/Utils/MeshEdit/UnityPreprocessing.cpp
@@ -121,7 +121,7 @@ MeshLib::Properties constructProperties(MeshLib::Properties const& props,
 
 MeshLib::Mesh* constructMesh(MeshLib::Mesh const& mesh)
 {
-    INFO("Splitting nodes...")
+    INFO("Splitting nodes...");
     std::vector<MeshLib::Element*> const& elems = mesh.getElements();
     std::vector<MeshLib::Node*> new_nodes;
     std::vector<MeshLib::Element*> new_elems;
@@ -183,7 +183,7 @@ int main (int argc, char* argv[])
         return EXIT_FAILURE;
     INFO("done.\n");
 
-    INFO("Checking for line elements...")
+    INFO("Checking for line elements...");
     std::array<unsigned, 7> const& n_element_types =
         MeshLib::MeshInformation::getNumberOfElementTypes(*mesh);
     std::unique_ptr<MeshLib::Mesh> result;
diff --git a/Applications/Utils/MeshEdit/checkMesh.cpp b/Applications/Utils/MeshEdit/checkMesh.cpp
index 3d6bdc8077c..1c9c52eed39 100644
--- a/Applications/Utils/MeshEdit/checkMesh.cpp
+++ b/Applications/Utils/MeshEdit/checkMesh.cpp
@@ -112,18 +112,20 @@ int main(int argc, char *argv[])
         auto vec_bounds (MeshLib::MeshInformation::getValueBounds<int>(*mesh, vec_name));
         if (vec_bounds.second != std::numeric_limits<int>::max())
         {
-            INFO("\t%s: [%d, %d]", vec_name.c_str(), vec_bounds.first, vec_bounds.second)
+            INFO("\t%s: [%d, %d]", vec_name.c_str(), vec_bounds.first,
+                 vec_bounds.second);
         }
         else
         {
             auto vec_bounds (MeshLib::MeshInformation::getValueBounds<double>(*mesh, vec_name));
             if (vec_bounds.second != std::numeric_limits<double>::max())
             {
-                INFO("\t%s: [%g, %g]", vec_name.c_str(), vec_bounds.first, vec_bounds.second)
+                INFO("\t%s: [%g, %g]", vec_name.c_str(), vec_bounds.first,
+                     vec_bounds.second);
             }
             else
             {
-                INFO("\t%s: Unknown properties", vec_name.c_str())
+                INFO("\t%s: Unknown properties", vec_name.c_str());
             }
         }
     }
diff --git a/Applications/Utils/MeshEdit/moveMeshNodes.cpp b/Applications/Utils/MeshEdit/moveMeshNodes.cpp
index e4e6c88dc26..b86575038a5 100644
--- a/Applications/Utils/MeshEdit/moveMeshNodes.cpp
+++ b/Applications/Utils/MeshEdit/moveMeshNodes.cpp
@@ -211,6 +211,6 @@ int main (int argc, char* argv[])
     if (MeshLib::IO::writeMeshToFile(*mesh, new_mesh_name) != 0)
         return EXIT_FAILURE;
 
-    INFO ("Result successfully written.")
+    INFO("Result successfully written.");
     return EXIT_SUCCESS;
 }
diff --git a/GeoLib/GEOObjects.cpp b/GeoLib/GEOObjects.cpp
index 8315edc66bb..8e51fa3c47f 100644
--- a/GeoLib/GEOObjects.cpp
+++ b/GeoLib/GEOObjects.cpp
@@ -572,7 +572,7 @@ const GeoLib::GeoObject* GEOObjects::getGeoObject(const std::string &geo_name,
         break;
     }
     default:
-        ERR("GEOObjects::getGeoObject(): geometric type not handled.")
+        ERR("GEOObjects::getGeoObject(): geometric type not handled.");
         return nullptr;
     };
 
diff --git a/MeshLib/IO/VtkIO/VtuInterface.cpp b/MeshLib/IO/VtkIO/VtuInterface.cpp
index a4b1d7364ac..fcb38d13480 100644
--- a/MeshLib/IO/VtkIO/VtuInterface.cpp
+++ b/MeshLib/IO/VtkIO/VtuInterface.cpp
@@ -44,7 +44,7 @@ VtuInterface::VtuInterface(const MeshLib::Mesh* mesh, int dataMode, bool compres
     _mesh(mesh), _data_mode(dataMode), _use_compressor(compress)
 {
     if(_data_mode == vtkXMLWriter::Ascii && compress)
-        WARN("Ascii data cannot be compressed, ignoring compression flag.")
+        WARN("Ascii data cannot be compressed, ignoring compression flag.");
 }
 
 MeshLib::Mesh* VtuInterface::readVTUFile(std::string const &file_name)
diff --git a/MeshLib/MeshEditing/MeshRevision.cpp b/MeshLib/MeshEditing/MeshRevision.cpp
index 9e962d3dccd..f53b67c7f43 100644
--- a/MeshLib/MeshEditing/MeshRevision.cpp
+++ b/MeshLib/MeshEditing/MeshRevision.cpp
@@ -650,7 +650,7 @@ unsigned MeshRevision::reducePrism(MeshLib::Element const*const org_elem,
                     const unsigned k = this->lutPrismThirdNode(i,j);
                     if (k == std::numeric_limits<unsigned>::max())
                     {
-                        ERR ("Unexpected error during prism reduction.")
+                        ERR("Unexpected error during prism reduction.");
                         return 0;
                     }
                     const unsigned k_offset = (i>2) ? k-3 : k+3;
diff --git a/ProcessLib/CreateProcessData.cpp b/ProcessLib/CreateProcessData.cpp
index 534ceb88f59..f925d3e6a3f 100644
--- a/ProcessLib/CreateProcessData.cpp
+++ b/ProcessLib/CreateProcessData.cpp
@@ -104,7 +104,7 @@ std::vector<std::unique_ptr<ProcessData>> createPerProcessData(
         {
             INFO(
                 "The equations of the coupled processes will be solved by the "
-                "staggered scheme.")
+                "staggered scheme.");
         }
     }
 
diff --git a/ProcessLib/UncoupledProcessesTimeLoop.cpp b/ProcessLib/UncoupledProcessesTimeLoop.cpp
index f84567bad12..3ec7965a2c5 100644
--- a/ProcessLib/UncoupledProcessesTimeLoop.cpp
+++ b/ProcessLib/UncoupledProcessesTimeLoop.cpp
@@ -638,7 +638,7 @@ bool UncoupledProcessesTimeLoop::loop()
     INFO(
         "The whole computation of the time stepping took %u steps, in which\n"
         "\t the accepted steps are %u, and the rejected steps are %u.\n",
-        accepted_steps + rejected_steps, accepted_steps, rejected_steps)
+        accepted_steps + rejected_steps, accepted_steps, rejected_steps);
 
     // output last time step
     if (nonlinear_solver_succeeded)
-- 
GitLab