Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / gromacs / gpu_utils / clfftinitializer.cpp
index f4ccdda7030f7f9adbf2b6ae27335a009963ffc0..693c32983a2ed019c9c16998deaa6e1b4c5fcfab 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2018, by the GROMACS development team, led by
+ * Copyright (c) 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.
@@ -45,7 +45,8 @@
 
 #include "config.h"
 
-#include "gromacs/compat/make_unique.h"
+#include <memory>
+
 #include "gromacs/utility/exceptions.h"
 #include "gromacs/utility/stringutil.h"
 
@@ -83,7 +84,7 @@ ClfftInitializer::~ClfftInitializer()
 
 std::unique_ptr<ClfftInitializer> initializeClfftLibrary()
 {
-    return compat::make_unique<ClfftInitializer>();
+    return std::make_unique<ClfftInitializer>();
 }
 
 }  // namespace gmx