diff --git a/Sim/Simulation/DepthprobeSimulation.cpp b/Sim/Simulation/DepthprobeSimulation.cpp
index 4212ce36374de57ebbed00f38653aaddee4239d1..5028b5f339bc81c2c3391348448b6a10663d921b 100644
--- a/Sim/Simulation/DepthprobeSimulation.cpp
+++ b/Sim/Simulation/DepthprobeSimulation.cpp
@@ -141,8 +141,7 @@ void DepthprobeSimulation::initElementVector()
 void DepthprobeSimulation::runComputation(const ReSample& re_sample, size_t iElement)
 {
     const auto& begin = m_depth_eles.begin() + static_cast<long>(iElement);
-    DepthprobeComputation(re_sample, options(), progress(), begin,
-                          begin + static_cast<long>(1))
+    DepthprobeComputation(re_sample, options(), progress(), begin, begin + static_cast<long>(1))
         .runProtected();
 }
 
diff --git a/Sim/Simulation/SpecularSimulation.cpp b/Sim/Simulation/SpecularSimulation.cpp
index 363c4bb40733d1f95a894c9ec3a3ed553f7fa413..e85c0a01f273d7f2dfa611d64c8c9940bd7a0636 100644
--- a/Sim/Simulation/SpecularSimulation.cpp
+++ b/Sim/Simulation/SpecularSimulation.cpp
@@ -53,8 +53,7 @@ void SpecularSimulation::initElementVector()
 void SpecularSimulation::runComputation(const ReSample& re_sample, size_t iElement)
 {
     const auto& begin = m_eles.begin() + static_cast<long>(iElement);
-    SpecularComputation(re_sample, options(), progress(), begin,
-                        begin + static_cast<long>(1))
+    SpecularComputation(re_sample, options(), progress(), begin, begin + static_cast<long>(1))
         .runProtected();
 }