Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / api / cpp / md.cpp
index b978c67f2345a2cb745fc157c3743c35a019e4b2..5d235301f091f2bbfa8b6490cf932378f9edb883 100644 (file)
@@ -36,7 +36,6 @@
 
 #include <memory>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/mdtypes/state.h"
 #include "gromacs/utility/keyvaluetree.h"
 
@@ -70,7 +69,7 @@ class MDWorkSpec::Impl
 //! \endcond
 
 MDWorkSpec::MDWorkSpec() :
-    impl_ {gmx::compat::make_unique<Impl>()}
+    impl_ {std::make_unique<Impl>()}
 {
     GMX_ASSERT(impl_, "Expected non-null implementation object.");
 }