Remove PrivateImplPointer in favour of std::unique_ptr
[alexxy/gromacs.git] / src / gromacs / onlinehelp / helpformat.h
index 8ce680719b78fa8346ccd9b1e902ed7c70a7e98a..c5cc667404385306c4fe8ec64408ef16bfb94696 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2012,2013,2014,2015,2019, by the GROMACS development team, led by
+ * Copyright (c) 2012,2013,2014,2015,2019,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_ONLINEHELP_HELPFORMAT_H
 #define GMX_ONLINEHELP_HELPFORMAT_H
 
+#include <memory>
 #include <string>
 
-#include "gromacs/utility/classhelpers.h"
-
 namespace gmx
 {
 
@@ -227,7 +226,7 @@ public:
 private:
     class Impl;
 
-    PrivateImplPointer<Impl> impl_;
+    std::unique_ptr<Impl> impl_;
 };
 
 } // namespace gmx