diff options
author | lloyd <[email protected]> | 2008-10-11 18:54:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-11 18:54:16 +0000 |
commit | 45406779275e53bc2d6a3bc13a8241195f2a85c1 (patch) | |
tree | 2734d1bd73ee2a7566b89620b40fa22ecc25f9ad /src/cert/cvc | |
parent | 281c2063f35217f9785fa4763475eac6fd4c4ed8 (diff) |
Missing tr1 inclusion in freestore.h
Diffstat (limited to 'src/cert/cvc')
-rw-r--r-- | src/cert/cvc/freestore.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cert/cvc/freestore.h b/src/cert/cvc/freestore.h index cbee1b29a..f83d1e867 100644 --- a/src/cert/cvc/freestore.h +++ b/src/cert/cvc/freestore.h @@ -6,6 +6,14 @@ #ifndef BOTAN_FREESTORE_H__ #define BOTAN_FREESTORE_H__ +#if defined(BOTAN_USE_TR1_SHARED_PTR) + #include <tr1/memory> +#elif defined(BOTAN_USE_BOOST_TR1_SHARED_PTR) + #include <boost/tr1/memory.hpp> +#else + #error "Please choose a shared_ptr implementation" +#endif + namespace Botan { template<typename T> |