diff options
Diffstat (limited to 'lang/cpp/src/key.h')
-rw-r--r-- | lang/cpp/src/key.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lang/cpp/src/key.h b/lang/cpp/src/key.h index 80bf4d19..a87a35cf 100644 --- a/lang/cpp/src/key.h +++ b/lang/cpp/src/key.h @@ -29,9 +29,7 @@ #include "gpgmefw.h" -#include <boost/shared_ptr.hpp> -#include <boost/type_traits/remove_pointer.hpp> - +#include <memory> #include <sys/time.h> #include <vector> @@ -46,7 +44,7 @@ class Context; class Subkey; class UserID; -typedef boost::shared_ptr< boost::remove_pointer<gpgme_key_t>::type > shared_gpgme_key_t; +typedef std::shared_ptr< std::remove_pointer<gpgme_key_t>::type > shared_gpgme_key_t; // // class Key |