summaryrefslogtreecommitdiffstats
path: root/src/trace
diff options
context:
space:
mode:
Diffstat (limited to 'src/trace')
-rw-r--r--src/trace/siox.cpp10
-rw-r--r--src/trace/siox.h6
-rw-r--r--src/trace/trace.cpp2
-rw-r--r--src/trace/trace.h8
4 files changed, 10 insertions, 16 deletions
diff --git a/src/trace/siox.cpp b/src/trace/siox.cpp
index 9501da3c4..e82f272ab 100644
--- a/src/trace/siox.cpp
+++ b/src/trace/siox.cpp
@@ -308,15 +308,9 @@ public:
indexMinFg = other.indexMinFg;
}
Tupel &operator=(const Tupel &other)
- {
- minBgDist = other.minBgDist;
- indexMinBg = other.indexMinBg;
- minFgDist = other.minFgDist;
- indexMinFg = other.indexMinFg;
- return *this;
- }
+ = default;
virtual ~Tupel()
- {}
+ = default;
float minBgDist;
long indexMinBg;
diff --git a/src/trace/siox.h b/src/trace/siox.h
index 6f3f89a83..49e398397 100644
--- a/src/trace/siox.h
+++ b/src/trace/siox.h
@@ -108,7 +108,7 @@ public:
*
*/
virtual ~CieLab()
- {}
+ = default;
/**
* Retrieve a CieLab value via index.
@@ -329,7 +329,7 @@ public:
private:
SioxImage()
- {}
+ = default;
/**
* Assign values to that of another
@@ -395,7 +395,7 @@ public:
* Destructor
*/
virtual ~SioxObserver()
- { }
+ = default;
/**
* Informs the observer how much has been completed.
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp
index a76be208e..026bbeed7 100644
--- a/src/trace/trace.cpp
+++ b/src/trace/trace.cpp
@@ -165,7 +165,7 @@ public:
*
*/
~TraceSioxObserver () override
- { }
+ = default;
/**
* Informs the observer how much has been completed.
diff --git a/src/trace/trace.h b/src/trace/trace.h
index 790298261..10f7c08be 100644
--- a/src/trace/trace.h
+++ b/src/trace/trace.h
@@ -59,7 +59,7 @@ public:
*
*/
virtual ~TracingEngineResult()
- { }
+ = default;
/**
@@ -112,13 +112,13 @@ class TracingEngine
*
*/
TracingEngine()
- {}
+ = default;
/**
*
*/
virtual ~TracingEngine()
- {}
+ = default;
/**
* This is the working method of this interface, and all
@@ -177,7 +177,7 @@ public:
*
*/
~Tracer()
- {}
+ = default;
/**