diff options
Diffstat (limited to '')
| -rw-r--r-- | lang/cpp/src/engineinfo.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lang/cpp/src/engineinfo.h b/lang/cpp/src/engineinfo.h index 94c52bd1..4de9884f 100644 --- a/lang/cpp/src/engineinfo.h +++ b/lang/cpp/src/engineinfo.h @@ -25,7 +25,7 @@  #include "global.h" -#include <boost/shared_ptr.hpp> +#include <memory>  #include <algorithm> @@ -60,7 +60,7 @@ public:  private:      class Private; -    boost::shared_ptr<Private> d; +    std::shared_ptr<Private> d;  };  } | 
