Remove PrivateImplPointer in favour of std::unique_ptr
[alexxy/gromacs.git] / src / gromacs / options / optionsassigner.h
index 3892140566f1a3a5a994163025e5d47487e9f1e2..0ab59fe5415b34141909c7145df1364dee0915c8 100644 (file)
@@ -2,7 +2,7 @@
  * This file is part of the GROMACS molecular simulation package.
  *
  * Copyright (c) 2010,2011,2012,2013,2014 by the GROMACS development team.
- * Copyright (c) 2015,2016,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2015,2016,2019,2020,2021, 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.
 #ifndef GMX_OPTIONS_OPTIONSASSIGNER_H
 #define GMX_OPTIONS_OPTIONSASSIGNER_H
 
+#include <memory>
 #include <string>
 
-#include "gromacs/utility/classhelpers.h"
-
 namespace gmx
 {
 
@@ -207,7 +206,7 @@ public:
 private:
     class Impl;
 
-    PrivateImplPointer<Impl> impl_;
+    std::unique_ptr<Impl> impl_;
 };
 
 } // namespace gmx