diff --git a/ProcessLib/HeatTransportBHE/BHE/BHECommonCoaxial.cpp b/ProcessLib/HeatTransportBHE/BHE/BHECommonCoaxial.cpp
index 6777380c8eb40421b295b89b508f3c3a34632de0..945ae14126ed2dd45357a24e0e9cc76b0ea02205 100644
--- a/ProcessLib/HeatTransportBHE/BHE/BHECommonCoaxial.cpp
+++ b/ProcessLib/HeatTransportBHE/BHE/BHECommonCoaxial.cpp
@@ -35,7 +35,7 @@ BHECommonCoaxial::pipeHeatCapacities() const
 }
 
 double BHECommonCoaxial::updateFlowRateAndTemperature(double const T_out,
-                                             double const current_time)
+                                                      double const current_time)
 {
     auto values =
         visit([&](auto const& control) { return control(T_out, current_time); },
diff --git a/ProcessLib/HeatTransportBHE/CreateHeatTransportBHEProcess.h b/ProcessLib/HeatTransportBHE/CreateHeatTransportBHEProcess.h
index 2aa56acf9139c22722f7f6f1c93519f93b925c3f..bfc3debc09bfa9f6efc0dce0cfc394bb93b7fda1 100644
--- a/ProcessLib/HeatTransportBHE/CreateHeatTransportBHEProcess.h
+++ b/ProcessLib/HeatTransportBHE/CreateHeatTransportBHEProcess.h
@@ -11,8 +11,9 @@
 #pragma once
 
 #include <memory>
-#include "ProcessLib/Process.h"
+
 #include "MaterialLib/MPL/CreateMaterialSpatialDistributionMap.h"
+#include "ProcessLib/Process.h"
 
 namespace ProcessLib
 {
diff --git a/ProcessLib/HeatTransportBHE/HeatTransportBHEProcess.cpp b/ProcessLib/HeatTransportBHE/HeatTransportBHEProcess.cpp
index c512f3ada9c0e6a9291bb4cacc8a22681480de07..30ec77829440045937faae61779d5c6b1b56c1f2 100644
--- a/ProcessLib/HeatTransportBHE/HeatTransportBHEProcess.cpp
+++ b/ProcessLib/HeatTransportBHE/HeatTransportBHEProcess.cpp
@@ -195,8 +195,8 @@ void HeatTransportBHEProcess::computeSecondaryVariableConcrete(
     ProcessLib::ProcessVariable const& pv = getProcessVariables(process_id)[0];
     GlobalExecutor::executeSelectedMemberOnDereferenced(
         &HeatTransportBHELocalAssemblerInterface::computeSecondaryVariable,
-        _local_assemblers, pv.getActiveElementIDs(),
-        getDOFTable(process_id), t, x, _coupled_solutions);
+        _local_assemblers, pv.getActiveElementIDs(), getDOFTable(process_id), t,
+        x, _coupled_solutions);
 }
 
 #ifdef OGS_USE_PYTHON