Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / testutils / refdata-impl.h
index 440607dc58672aab820943b7dee1f20825ae7931..93f0798bc4dd04ccda127b2016abffd92b35676b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2015,2016,2017,2018, by the GROMACS development team, led by
+ * Copyright (c) 2015,2016,2017,2018,2019, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -46,7 +46,6 @@
 #include <memory>
 #include <string>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/utility/gmxassert.h"
 
 namespace gmx
@@ -63,7 +62,7 @@ class ReferenceDataEntry
 
         static EntryPointer createRoot()
         {
-            return gmx::compat::make_unique<ReferenceDataEntry>("", "");
+            return std::make_unique<ReferenceDataEntry>("", "");
         }
 
         ReferenceDataEntry(const char *type, const char *id)