diff --git a/MeshLib/Elements/Element.h b/MeshLib/Elements/Element.h
index 1216bad930bfc731fb3880f7bba78e42e441f342..13bec65e7408803a95084648967cd63d42ce6aa8 100644
--- a/MeshLib/Elements/Element.h
+++ b/MeshLib/Elements/Element.h
@@ -141,7 +141,10 @@ public:
     /**
      * Returns true if the element has zero length/area/volume.
      */
-    bool hasZeroVolume() const { return this->getContent() < std::numeric_limits<double>::epsilon(); }
+    bool hasZeroVolume() const
+    {
+        return this->getContent() < std::numeric_limits<double>::epsilon();
+    }
 
     /// Returns true if the element is located at a boundary (i.e. has at least one face without neighbour)
     virtual bool isBoundaryElement() const;