From d09eca62c4d7b8255964fbccc0ee3fa6db4f0f7a Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@gmail.com> Date: Thu, 3 May 2018 16:15:54 +0100 Subject: [PATCH] Fix pessimizing-move warnings from Apple Clang 9 --- Framework/Algorithms/test/ReflectometryReductionOne2Test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Algorithms/test/ReflectometryReductionOne2Test.h b/Framework/Algorithms/test/ReflectometryReductionOne2Test.h index cc52d1b307d..f27921b3b5d 100644 --- a/Framework/Algorithms/test/ReflectometryReductionOne2Test.h +++ b/Framework/Algorithms/test/ReflectometryReductionOne2Test.h @@ -587,7 +587,7 @@ public: ReflectometryReductionOne2 alg; - auto inputWS = MatrixWorkspace_sptr(std::move(m_multiDetectorWS->clone())); + auto inputWS = MatrixWorkspace_sptr(m_multiDetectorWS->clone()); setYValuesToWorkspace(*inputWS); alg.setChild(true); @@ -631,7 +631,7 @@ public: ReflectometryReductionOne2 alg; - auto inputWS = MatrixWorkspace_sptr(std::move(m_multiDetectorWS->clone())); + auto inputWS = MatrixWorkspace_sptr(m_multiDetectorWS->clone()); setYValuesToWorkspace(*inputWS); alg.setChild(true); -- GitLab