Used IWYU to partially clean up some includes
[alexxy/gromacs.git] / src / gromacs / utility / uniqueptr.h
index 93d376cd8a1da0e38cb83c8172819759cc175ec9..330f04b53832e8e090c33ce9762495bb5d44daf9 100644 (file)
 
 #include "config.h"
 
-#ifdef GMX_CXX11 // C++11 Compiler
-#include <memory>
-#include <utility>
-#else      // C++03 Compiler
+#ifdef GMX_CXX11   // C++11 Compiler
+#include <memory>  // IWYU pragma: export
+#include <utility> // IWYU pragma: export
+#else              // C++03 Compiler
 #include <boost/shared_ptr.hpp>
 #endif