diff options
Diffstat (limited to '')
| -rw-r--r-- | lang/cpp/src/keygenerationresult.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lang/cpp/src/keygenerationresult.h b/lang/cpp/src/keygenerationresult.h index c4aaad11..c35c5044 100644 --- a/lang/cpp/src/keygenerationresult.h +++ b/lang/cpp/src/keygenerationresult.h @@ -27,7 +27,7 @@  #include "result.h"  #include "gpgmepp_export.h" -#include <boost/shared_ptr.hpp> +#include <memory>  namespace GpgME  { @@ -72,7 +72,7 @@ public:  private:      class Private;      void init(gpgme_ctx_t ctx); -    boost::shared_ptr<Private> d; +    std::shared_ptr<Private> d;  };  } | 
