aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/src/keylistresult.h
diff options
context:
space:
mode:
Diffstat (limited to 'lang/cpp/src/keylistresult.h')
-rw-r--r--lang/cpp/src/keylistresult.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/cpp/src/keylistresult.h b/lang/cpp/src/keylistresult.h
index 618573be..7dfe2d71 100644
--- a/lang/cpp/src/keylistresult.h
+++ b/lang/cpp/src/keylistresult.h
@@ -27,7 +27,7 @@
#include "result.h"
#include "gpgmepp_export.h"
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace GpgME
{
@@ -71,7 +71,7 @@ private:
void detach();
void init(gpgme_ctx_t ctx);
class Private;
- boost::shared_ptr<Private> d;
+ std::shared_ptr<Private> d;
};
}