From 36647c84f1f2840fdd1e47c39d1ae01f037bf04c Mon Sep 17 00:00:00 2001
From: xai <xiaocong.ai@cern.ch>
Date: Sat, 21 Dec 2019 16:31:09 +0800
Subject: [PATCH] A small fix

---
 Core/include/Acts/Fitter/KalmanFitter.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Core/include/Acts/Fitter/KalmanFitter.hpp b/Core/include/Acts/Fitter/KalmanFitter.hpp
index f2723ed1c..ec82ff4b9 100644
--- a/Core/include/Acts/Fitter/KalmanFitter.hpp
+++ b/Core/include/Acts/Fitter/KalmanFitter.hpp
@@ -233,8 +233,8 @@ class KalmanFitter {
           calibrator_t pCalibrator = calibrator_t())
         : m_updater(std::move(pUpdater)),
           m_smoother(std::move(pSmoother)),
-          m_calibrator(std::move(pCalibrator)),
-          m_outlierFinder(std::move(pOutlierFinder)) {}
+          m_outlierFinder(std::move(pOutlierFinder)),
+          m_calibrator(std::move(pCalibrator)) {}
 
     /// Broadcast the result_type
     using result_type = KalmanFitterResult<source_link_t>;
-- 
GitLab