diff options
Diffstat (limited to 'lang/cpp/src/assuanresult.h')
-rw-r--r-- | lang/cpp/src/assuanresult.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/cpp/src/assuanresult.h b/lang/cpp/src/assuanresult.h index e1dc73af..e59b5ac2 100644 --- a/lang/cpp/src/assuanresult.h +++ b/lang/cpp/src/assuanresult.h @@ -30,10 +30,9 @@ #include <time.h> -#include <boost/shared_ptr.hpp> - #include <vector> #include <iosfwd> +#include <memory> namespace GpgME { @@ -68,7 +67,7 @@ public: class Private; private: void init(gpgme_ctx_t ctx); - boost::shared_ptr<Private> d; + std::shared_ptr<Private> d; }; GPGMEPP_EXPORT std::ostream &operator<<(std::ostream &os, const AssuanResult &result); |