diff --git a/Base/Types/CloneableVector.h b/Base/Types/CloneableVector.h
index e3d4e02244e06bba57de49dfc54ed4e6fed95231..55f218111d1c6882db5992e56894b2441cc91353 100644
--- a/Base/Types/CloneableVector.h
+++ b/Base/Types/CloneableVector.h
@@ -36,8 +36,8 @@ template <class T> class CloneableVector : public std::vector<std::unique_ptr<T>
     using super = std::vector<std::unique_ptr<T>>;
 
 public:
-    CloneableVector() : super() {}
-    CloneableVector(const CloneableVector& other) : super()
+    CloneableVector() {}
+    CloneableVector(const CloneableVector& other)
     {
         super::reserve(other.size());
         for (const std::unique_ptr<T>& t : other)