From 115ebba2cc544d285b2cd2c8b1196c7cc2c6492d Mon Sep 17 00:00:00 2001
From: Walter Van Herck <w.van.herck@fz-juelich.de>
Date: Tue, 28 Nov 2017 17:45:45 +0100
Subject: [PATCH] Replace tabs with spaces

---
 Core/Basics/ICloneable.h             | 8 ++++----
 Core/Computation/DWBAComputation.cpp | 4 ++--
 Core/Fitting/FitObject.cpp           | 4 ++--
 Core/Fitting/FitSuiteObjects.cpp     | 4 ++--
 Core/Multilayer/IFresnelMap.cpp      | 4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/Core/Basics/ICloneable.h b/Core/Basics/ICloneable.h
index b322cc851d0..32f409350cb 100644
--- a/Core/Basics/ICloneable.h
+++ b/Core/Basics/ICloneable.h
@@ -27,11 +27,11 @@
 class BA_CORE_API_ ICloneable
 {
 public:
-	ICloneable();
-	virtual ~ICloneable();
+    ICloneable();
+    virtual ~ICloneable();
 
-	ICloneable(const ICloneable&) =delete;
-	ICloneable& operator=(const ICloneable&) =delete;
+    ICloneable(const ICloneable&) =delete;
+    ICloneable& operator=(const ICloneable&) =delete;
 
     virtual ICloneable* clone() const =0;
     virtual void transferToCPP() {} //!< Used for Python overriding of clone (see swig/tweaks.py)
diff --git a/Core/Computation/DWBAComputation.cpp b/Core/Computation/DWBAComputation.cpp
index e6db94dba6c..dd9810f6f96 100644
--- a/Core/Computation/DWBAComputation.cpp
+++ b/Core/Computation/DWBAComputation.cpp
@@ -27,9 +27,9 @@
 #include "MaterialFactoryFuncs.h"
 
 static_assert(std::is_copy_constructible<DWBAComputation>::value == false,
-	"DWBAComputation should not be copy constructable");
+    "DWBAComputation should not be copy constructable");
 static_assert(std::is_copy_assignable<DWBAComputation>::value == false,
-	"DWBAComputation should not be copy assignable");
+    "DWBAComputation should not be copy assignable");
 
 DWBAComputation::DWBAComputation(
     const MultiLayer& multilayer,
diff --git a/Core/Fitting/FitObject.cpp b/Core/Fitting/FitObject.cpp
index 3b190fb6c5c..252b981ea1f 100644
--- a/Core/Fitting/FitObject.cpp
+++ b/Core/Fitting/FitObject.cpp
@@ -22,9 +22,9 @@
 #include "DetectorFunctions.h"
 
 static_assert(std::is_copy_constructible<FitObject>::value == false,
-	"FitObject should not be copy constructable");
+    "FitObject should not be copy constructable");
 static_assert(std::is_copy_assignable<FitObject>::value == false,
-	"FitObject should not be copy assignable");
+    "FitObject should not be copy assignable");
 
 FitObject::FitObject(const Simulation& simulation, const OutputData<double >& real_data,
     double weight)
diff --git a/Core/Fitting/FitSuiteObjects.cpp b/Core/Fitting/FitSuiteObjects.cpp
index 29381a3632a..718e003de6c 100644
--- a/Core/Fitting/FitSuiteObjects.cpp
+++ b/Core/Fitting/FitSuiteObjects.cpp
@@ -17,9 +17,9 @@
 #include "ChiSquaredModule.h"
 
 static_assert(std::is_copy_constructible<FitSuiteObjects>::value == false,
-	"FitSuiteObjects should not be copy constructable");
+    "FitSuiteObjects should not be copy constructable");
 static_assert(std::is_copy_assignable<FitSuiteObjects>::value == false,
-	"FitSuiteObjects should not be copy assignable");
+    "FitSuiteObjects should not be copy assignable");
 
 FitSuiteObjects::FitSuiteObjects()
   : m_total_weight(0)
diff --git a/Core/Multilayer/IFresnelMap.cpp b/Core/Multilayer/IFresnelMap.cpp
index da98f5e87d8..f64a32d22d2 100644
--- a/Core/Multilayer/IFresnelMap.cpp
+++ b/Core/Multilayer/IFresnelMap.cpp
@@ -17,9 +17,9 @@
 #include "MultiLayer.h"
 
 static_assert(std::is_copy_constructible<IFresnelMap>::value == false,
-	"IFresnelMap should not be copy constructable");
+    "IFresnelMap should not be copy constructable");
 static_assert(std::is_copy_assignable<IFresnelMap>::value == false,
-	"IFresnelMap should not be copy assignable");
+    "IFresnelMap should not be copy assignable");
 
 IFresnelMap::IFresnelMap()
     : m_use_cache(true)
-- 
GitLab