diff --git a/MeshLib/Elements/Cell.cpp b/MeshLib/Elements/Cell.cpp
index 1c7b5689998e5a66bb8ff9f64cccf60f54e23805..e9a549e94d061ce3930bffe01e8c6d86240c0546 100644
--- a/MeshLib/Elements/Cell.cpp
+++ b/MeshLib/Elements/Cell.cpp
@@ -12,11 +12,11 @@
  *
  */
 
+#include "Cell.h"
+
 #include "MathLib/Vector3.h"
 #include "MeshLib/Node.h"
 
-#include "Cell.h"
-
 namespace MeshLib {
 
 const unsigned Cell::dimension = 3u;
diff --git a/MeshLib/Elements/Element.cpp b/MeshLib/Elements/Element.cpp
index 7352e8fff11688956456cdfedafc384842d13d1b..e4e99e0268a7fb89c8fc52bf9552072eb770eb1f 100644
--- a/MeshLib/Elements/Element.cpp
+++ b/MeshLib/Elements/Element.cpp
@@ -12,12 +12,13 @@
  *
  */
 
+#include "Element.h"
+
 #include "logog/include/logog.hpp"
 
 #include "MathLib/MathTools.h"
 #include "MeshLib/Node.h"
 
-#include "Element.h"
 #include "Line.h"
 
 namespace MeshLib {
diff --git a/MeshLib/Elements/Face.cpp b/MeshLib/Elements/Face.cpp
index 4dbf914ee0182be0418e8ddfae5ab0e44faee06d..f741b6e4baaa80568b89efbe4d543ccf9eeb5524 100644
--- a/MeshLib/Elements/Face.cpp
+++ b/MeshLib/Elements/Face.cpp
@@ -12,10 +12,11 @@
  *
  */
 
+#include "Face.h"
+
 #include "MathLib/MathTools.h"
 #include "MathLib/Vector3.h"
 
-#include "Face.h"
 #include "Line.h"
 
 namespace MeshLib {
diff --git a/MeshLib/Mesh.cpp b/MeshLib/Mesh.cpp
index 0d1ba4a9889272d17680cc36b2daa23c63256ac8..ac6cc90d1b67214dc97b0fde32a46cde497b0326 100644
--- a/MeshLib/Mesh.cpp
+++ b/MeshLib/Mesh.cpp
@@ -12,14 +12,14 @@
  *
  */
 
+#include "Mesh.h"
+
 #include <boost/optional.hpp>
 
 #include "logog/include/logog.hpp"
 
 #include "BaseLib/RunTime.h"
 
-#include "Mesh.h"
-
 #include "Elements/Tri.h"
 #include "Elements/Quad.h"
 #include "Elements/Tet.h"