Skip to content
Snippets Groups Projects
Commit 81bc14c7 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

clang-format

parent 8caa6fe3
No related branches found
No related tags found
1 merge request!1282simplify AlphaScan
...@@ -141,8 +141,7 @@ void DepthprobeSimulation::initElementVector() ...@@ -141,8 +141,7 @@ void DepthprobeSimulation::initElementVector()
void DepthprobeSimulation::runComputation(const ReSample& re_sample, size_t iElement) void DepthprobeSimulation::runComputation(const ReSample& re_sample, size_t iElement)
{ {
const auto& begin = m_depth_eles.begin() + static_cast<long>(iElement); const auto& begin = m_depth_eles.begin() + static_cast<long>(iElement);
DepthprobeComputation(re_sample, options(), progress(), begin, DepthprobeComputation(re_sample, options(), progress(), begin, begin + static_cast<long>(1))
begin + static_cast<long>(1))
.runProtected(); .runProtected();
} }
......
...@@ -53,8 +53,7 @@ void SpecularSimulation::initElementVector() ...@@ -53,8 +53,7 @@ void SpecularSimulation::initElementVector()
void SpecularSimulation::runComputation(const ReSample& re_sample, size_t iElement) void SpecularSimulation::runComputation(const ReSample& re_sample, size_t iElement)
{ {
const auto& begin = m_eles.begin() + static_cast<long>(iElement); const auto& begin = m_eles.begin() + static_cast<long>(iElement);
SpecularComputation(re_sample, options(), progress(), begin, SpecularComputation(re_sample, options(), progress(), begin, begin + static_cast<long>(1))
begin + static_cast<long>(1))
.runProtected(); .runProtected();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment