Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / gromacs / utility / any.h
index 05ece95265f890771a6b7f7769f7d48aa9911361..8e9464e4227e1f73f1e0960befcb58fe3a22b5c8 100644 (file)
@@ -50,7 +50,6 @@
 #include <typeinfo>
 #include <utility>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/utility/gmxassert.h"
 
 namespace gmx
@@ -226,7 +225,7 @@ class Any
                 explicit Content(T &&value) : value_(std::move(value)) {}
 
                 const std::type_info &typeInfo() const override { return typeid(T); }
-                std::unique_ptr<IContent> clone() const override { return compat::make_unique<Content>(value_); }
+                std::unique_ptr<IContent> clone() const override { return std::make_unique<Content>(value_); }
 
                 T value_;
         };