Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / programs / mdrun / tests / rerun.cpp
index 29d9a49c013e39a6bfeb0bfcee8abe1dbae09ef8..6f97fbdc3dff14ea91e1a976067ce47b04e08cec 100644 (file)
@@ -52,7 +52,6 @@
 
 #include <gtest/gtest.h>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/options/filenameoption.h"
 #include "gromacs/topology/idef.h"
 #include "gromacs/topology/ifunc.h"
@@ -188,8 +187,8 @@ void executeRerunTest(TestFileManager        *fileManager,
         };
     // Build the manager that will present matching pairs of frames to compare
     FramePairManager<TrajectoryFrameReader, TrajectoryFrame>
-    trajectoryManager(compat::make_unique<TrajectoryFrameReader>(normalRunTrajectoryFileName),
-                      compat::make_unique<TrajectoryFrameReader>(rerunTrajectoryFileName));
+    trajectoryManager(std::make_unique<TrajectoryFrameReader>(normalRunTrajectoryFileName),
+                      std::make_unique<TrajectoryFrameReader>(rerunTrajectoryFileName));
     // Compare the trajectory frames.
     trajectoryManager.compareAllFramePairs(trajectoryComparator);
 }