Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / gromacs / ewald / pme-gpu-internal.cpp
index 5891a9c425e250e17412c3289f583c7276757820..a8d98e96cf11f71a92630bc24d76d2a2b4bf22fc 100644 (file)
@@ -52,9 +52,9 @@
 #include "config.h"
 
 #include <list>
+#include <memory>
 #include <string>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/ewald/ewald-utils.h"
 #include "gromacs/gpu_utils/gpu_utils.h"
 #include "gromacs/math/invertmatrix.h"
@@ -578,7 +578,7 @@ void pme_gpu_reinit_3dfft(const PmeGpu *pmeGpu)
         pmeGpu->archSpecific->fftSetup.resize(0);
         for (int i = 0; i < pmeGpu->common->ngrids; i++)
         {
-            pmeGpu->archSpecific->fftSetup.push_back(gmx::compat::make_unique<GpuParallel3dFft>(pmeGpu));
+            pmeGpu->archSpecific->fftSetup.push_back(std::make_unique<GpuParallel3dFft>(pmeGpu));
         }
     }
 }