diff options
author | lloyd <[email protected]> | 2009-07-15 13:33:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-15 13:33:51 +0000 |
commit | b1fc3ff3fe19152eaf1adbdd9f503dfaf2b8a500 (patch) | |
tree | 05634e88229058a59c8ab0d84332f1baf148f4a5 /src/cert/cvc/freestore.h | |
parent | 864b9c9e8b8f0b7e8f7e15dc1905c2d501a1498e (diff) | |
parent | b438a3c6d08893ca77a1d18baef1b02e955eccf8 (diff) |
propagate from branch 'net.randombit.botan' (head 5438defd358f82e876917a8bd6d735305ecb0a8e)
to branch 'net.randombit.botan.c++0x' (head cbdb2fd418557add29a536f7bdb6e78db16f725c)
Diffstat (limited to 'src/cert/cvc/freestore.h')
-rw-r--r-- | src/cert/cvc/freestore.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/cert/cvc/freestore.h b/src/cert/cvc/freestore.h index f95afa802..a6f779c78 100644 --- a/src/cert/cvc/freestore.h +++ b/src/cert/cvc/freestore.h @@ -7,14 +7,7 @@ #define BOTAN_FREESTORE_H__ #include <botan/build.h> - -#if defined(BOTAN_USE_STD_TR1) - #include <tr1/memory> -#elif defined(BOTAN_USE_BOOST_TR1) - #include <boost/tr1/memory.hpp> -#else - #error "Please choose a TR1 implementation in build.h" -#endif +#include <memory> namespace Botan { @@ -30,7 +23,7 @@ template<typename T> class BOTAN_DLL SharedPtrConverter { public: - typedef std::tr1::shared_ptr<T> SharedPtr; + typedef std::shared_ptr<T> SharedPtr; /** * Construct a null pointer equivalent object. |