diff --git a/MeshLib/CoordinateSystem.h b/MeshLib/CoordinateSystem.h
index 107d954a138975549bebaf639499d72926828041..8bad010138a3c5c6b856bb1928607215578a4cd9 100644
--- a/MeshLib/CoordinateSystem.h
+++ b/MeshLib/CoordinateSystem.h
@@ -55,9 +55,13 @@ public:
     /// get dimension size
     unsigned getDimension() const {
         if (hasZ())
+        {
             return 3;
+        }
         if (hasY())
+        {
             return 2;
+        }
 
         return 1;
     }
diff --git a/MeshLib/IO/VtkIO/VtuInterface-impl.h b/MeshLib/IO/VtkIO/VtuInterface-impl.h
index 579c9f10afc1bde90c688432a6aec07003115d9b..61474590fa0a516da71caa9dc57abf3f1ddf6e50 100644
--- a/MeshLib/IO/VtkIO/VtuInterface-impl.h
+++ b/MeshLib/IO/VtkIO/VtuInterface-impl.h
@@ -49,14 +49,20 @@ bool VtuInterface::writeVTU(std::string const& file_name,
     vtkSource->Update();
     vtuWriter->SetInputData(vtkSource->GetOutput());
 
-    if(_use_compressor)
+    if (_use_compressor)
+    {
         vtuWriter->SetCompressorTypeToZLib();
+    }
     else
+    {
         vtuWriter->SetCompressorTypeToNone();
+    }
 
     vtuWriter->SetDataMode(_data_mode);
     if (_data_mode == vtkXMLWriter::Appended)
+    {
         vtuWriter->SetEncodeAppendedData(1);
+    }
     if (_data_mode == vtkXMLWriter::Ascii)
     {
         vtkSource->Update();
diff --git a/MeshLib/IO/VtkIO/VtuInterface.cpp b/MeshLib/IO/VtkIO/VtuInterface.cpp
index 99a662822580b39d16bcacd90300456d20557e8b..e7c26b0eafcebccc3f08958093dbdb7d03730228 100644
--- a/MeshLib/IO/VtkIO/VtuInterface.cpp
+++ b/MeshLib/IO/VtkIO/VtuInterface.cpp
@@ -43,8 +43,10 @@ namespace IO
 VtuInterface::VtuInterface(const MeshLib::Mesh* mesh, int dataMode, bool compress) :
     _mesh(mesh), _data_mode(dataMode), _use_compressor(compress)
 {
-    if(_data_mode == vtkXMLWriter::Ascii && compress)
+    if (_data_mode == vtkXMLWriter::Ascii && compress)
+    {
         WARN("Ascii data cannot be compressed, ignoring compression flag.");
+    }
 }
 
 MeshLib::Mesh* VtuInterface::readVTUFile(std::string const &file_name)
diff --git a/MeshLib/MeshEditing/ElementValueModification.h b/MeshLib/MeshEditing/ElementValueModification.h
index f565ed4c1a2a28655524758bde537c1e54fd49fd..490deeb2ba700c3e186efbd2bb9dbbf341015783 100644
--- a/MeshLib/MeshEditing/ElementValueModification.h
+++ b/MeshLib/MeshEditing/ElementValueModification.h
@@ -66,7 +66,9 @@ private:
                 }
             }
             if (!exists)
+            {
                 value_mapping.push_back(value);
+            }
         }
 
         std::sort(value_mapping.begin(), value_mapping.end());
diff --git a/MeshLib/MeshEditing/MeshRevision.cpp b/MeshLib/MeshEditing/MeshRevision.cpp
index fbcc446b5cb881c5049a3f00cc7f77d3194c2f85..2570421137ae024ebff5e80d54d3c2129bb0bf89 100644
--- a/MeshLib/MeshEditing/MeshRevision.cpp
+++ b/MeshLib/MeshEditing/MeshRevision.cpp
@@ -117,8 +117,11 @@ MeshLib::Mesh* MeshRevision::simplifyMesh(const std::string &new_mesh_name,
             }
             new_material_vec->insert(new_material_vec->end(),
                 n_new_elements, (*material_vec)[k]);
-        } else
+        }
+        else
+        {
             ERR ("Something is wrong, more unique nodes than actual nodes");
+        }
     }
 
     this->resetNodeIDs();
diff --git a/MeshLib/MeshGenerators/MeshLayerMapper.cpp b/MeshLib/MeshGenerators/MeshLayerMapper.cpp
index 1fe12fe65399ddc9fb0ef869c572f5a88be9721b..726fc20d39c8697d03b59a0e4e70bcf122cae7a8 100644
--- a/MeshLib/MeshGenerators/MeshLayerMapper.cpp
+++ b/MeshLib/MeshGenerators/MeshLayerMapper.cpp
@@ -42,8 +42,10 @@ MeshLib::Mesh* MeshLayerMapper::createStaticLayers(MeshLib::Mesh const& mesh, st
             thickness.push_back(layer_thickness_vector[i]);
         }
         else
+        {
             WARN("Ignoring layer {:d} with thickness {:f}.", i,
                  layer_thickness_vector[i]);
+        }
     }
 
     const std::size_t nLayers(thickness.size());
diff --git a/MeshLib/MeshGenerators/RasterToMesh.h b/MeshLib/MeshGenerators/RasterToMesh.h
index bd8e582ea64c9acdefaa1e79c92d7e2faeb162b2..0d38b7440261cde0aee758bddb77ad0b2b9ef0cb 100644
--- a/MeshLib/MeshGenerators/RasterToMesh.h
+++ b/MeshLib/MeshGenerators/RasterToMesh.h
@@ -97,8 +97,11 @@ private:
                 {
                     auto val(static_cast<T>(img[idx + j]));
                     prop_vec.push_back(val);
-                    if (elem_type == MeshElemType::TRIANGLE || elem_type == MeshElemType::PRISM)
+                    if (elem_type == MeshElemType::TRIANGLE ||
+                        elem_type == MeshElemType::PRISM)
+                    {
                         prop_vec.push_back(val); // because each pixel is represented by two cells
+                    }
                 }
             }
         }
diff --git a/MeshLib/MeshGenerators/VtkMeshConverter.h b/MeshLib/MeshGenerators/VtkMeshConverter.h
index 266ab9bfdba461d48ff553c9a0865e1bfcc778db..f0d58beb133241b2f033ab8cc3caf3b1addc5451 100644
--- a/MeshLib/MeshGenerators/VtkMeshConverter.h
+++ b/MeshLib/MeshGenerators/VtkMeshConverter.h
@@ -79,7 +79,9 @@ private:
             for (std::size_t j = 0; j < imgWidth; j++)
             {
                 if (!pix_vis[i * imgWidth + j])
+                {
                     continue;
+                }
                 T val(static_cast<T>(pix_val[i * (imgWidth + 1) + j]));
                 if (elem_type == MeshElemType::TRIANGLE)
                 {
@@ -87,7 +89,9 @@ private:
                     prop_vec.push_back(val);
                 }
                 else if (elem_type == MeshElemType::QUAD)
+                {
                     prop_vec.push_back(val);
+                }
             }
         }
     }
diff --git a/MeshLib/MeshQuality/ElementSizeMetric.cpp b/MeshLib/MeshQuality/ElementSizeMetric.cpp
index 52383aeeadeba4bdddc075577abee986f3a9247e..245b695b2ba89c9154440a06f22697d2c316fdb9 100644
--- a/MeshLib/MeshQuality/ElementSizeMetric.cpp
+++ b/MeshLib/MeshQuality/ElementSizeMetric.cpp
@@ -43,7 +43,9 @@ void ElementSizeMetric::calculateQuality()
         _min,
         _max);
     if (error_count > 0)
+    {
         WARN("Warning: {:d} elements with zero volume found.", error_count);
+    }
 }
 
 std::size_t ElementSizeMetric::calc1dQuality()
diff --git a/MeshLib/MeshQuality/MeshValidation.cpp b/MeshLib/MeshQuality/MeshValidation.cpp
index 8a0a29dd8aba48f76e896be6a14cc57325d3a3d6..56db3a14098ae2ae624def0df80bfdcf98c42bc6 100644
--- a/MeshLib/MeshQuality/MeshValidation.cpp
+++ b/MeshLib/MeshQuality/MeshValidation.cpp
@@ -104,13 +104,17 @@ std::vector<ElementErrorCode> MeshValidation::testElementGeometry(const MeshLib:
         for (std::size_t i = 0; i < nErrorCodes; ++i)
         {
             if (error_count[i])
+            {
                 INFO("{:d} elements found with {:s}.",
                      error_count[i],
                      ElementErrorCode::toString(flags[i]));
+            }
         }
     }
     else
+    {
         INFO ("No errors found.");
+    }
     return error_code_vector;
 }
 
diff --git a/MeshLib/MeshSearch/ElementSearch.h b/MeshLib/MeshSearch/ElementSearch.h
index f852681958af536750b04d5e68a8cec3a88e90ce..e958074b8b27e0db5f59d9154ec8c321e34baaa1 100644
--- a/MeshLib/MeshSearch/ElementSearch.h
+++ b/MeshLib/MeshSearch/ElementSearch.h
@@ -96,7 +96,9 @@ public:
             {
                 if ((*pv)[i] < min_property_value ||
                     (*pv)[i] > max_property_value)
+                {
                     matchedIDs.push_back(i);
+                }
             }
         }
         else
@@ -105,7 +107,9 @@ public:
             {
                 if ((*pv)[i] >= min_property_value &&
                     (*pv)[i] <= max_property_value)
+                {
                     matchedIDs.push_back(i);
+                }
             }
         }
         updateUnion(matchedIDs);
diff --git a/MeshLib/MeshSurfaceExtraction.cpp b/MeshLib/MeshSurfaceExtraction.cpp
index bc60c273396d2d6a55a72c1b5893ea9dcfc0cf88..1478ec282b74a3e66e6e83d533e907835b9ff354 100644
--- a/MeshLib/MeshSurfaceExtraction.cpp
+++ b/MeshLib/MeshSurfaceExtraction.cpp
@@ -257,7 +257,9 @@ void MeshSurfaceExtraction::get2DSurfaceElements(
     const MathLib::Vector3& dir, double angle, unsigned mesh_dimension)
 {
     if (mesh_dimension < 2 || mesh_dimension > 3)
+    {
         ERR("Cannot handle meshes of dimension {:i}", mesh_dimension);
+    }
 
     bool const complete_surface = (MathLib::scalarProduct(dir, dir) == 0);