Replace compat::make_unique with std::make_unique
[alexxy/gromacs.git] / src / gromacs / options / repeatingsection.h
index de1cbf6631e84178d06d8bc754e0add514078511..175afd8f17eb11ed2bd4e677607b52f38c50c12d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2016,2018, by the GROMACS development team, led by
+ * Copyright (c) 2016,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 <vector>
 
-#include "gromacs/compat/make_unique.h"
 #include "gromacs/options/abstractsection.h"
 #include "gromacs/options/ioptionscontainerwithsections.h"
 #include "gromacs/options/isectionstorage.h"
@@ -154,7 +153,7 @@ template <class T>
 std::unique_ptr<IOptionSectionStorage> RepeatingOptionSection<T>::createStorage() const
 {
 
-    return compat::make_unique<RepeatingOptionSectionStorage<T> >(*this);
+    return std::make_unique<RepeatingOptionSectionStorage<T> >(*this);
 }
 
 /*! \brief