diff options
Diffstat (limited to 'src')
-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> |