diff options
Diffstat (limited to 'lang/cpp/src/data.h')
-rw-r--r-- | lang/cpp/src/data.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/cpp/src/data.h b/lang/cpp/src/data.h index c8a599ed..97e42029 100644 --- a/lang/cpp/src/data.h +++ b/lang/cpp/src/data.h @@ -25,11 +25,10 @@ #include "global.h" -#include <boost/shared_ptr.hpp> - #include <sys/types.h> // for size_t, off_t #include <cstdio> // FILE #include <algorithm> +#include <memory> namespace GpgME { @@ -100,7 +99,7 @@ public: return d.get(); } private: - boost::shared_ptr<Private> d; + std::shared_ptr<Private> d; }; } |