Skip to content
Snippets Groups Projects
Commit 12ae7037 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm redundant call to default base initializer

parent a3707ec0
No related branches found
No related tags found
1 merge request!45various cleanup
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment