From b68984ef114f0b98ab155b4fe34b229a26070b12 Mon Sep 17 00:00:00 2001 From: Moore <lamar.moore@stfc.ac.uk> Date: Mon, 18 Jul 2016 12:55:12 +0100 Subject: [PATCH] CorrectFlightPaths use operator+= instead of std::transform re #16612 --- Framework/Algorithms/src/CorrectFlightPaths.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Framework/Algorithms/src/CorrectFlightPaths.cpp b/Framework/Algorithms/src/CorrectFlightPaths.cpp index 014e381da81..ecf3326a7ec 100644 --- a/Framework/Algorithms/src/CorrectFlightPaths.cpp +++ b/Framework/Algorithms/src/CorrectFlightPaths.cpp @@ -116,8 +116,7 @@ void CorrectFlightPaths::exec() { auto edges = m_outputWS->binEdges(i); auto &X = m_outputWS->mutableX(i); - std::transform(edges.cbegin(), edges.cbegin() + numberOfChannels + 1, - X.begin(), [=](const double &x) { return x - deltaTOF; }); + m_outputWS->mutableX(i) += -deltaTOF; prog.report("Aligning elastic line..."); PARALLEL_END_INTERUPT_REGION -- GitLab