Defined out the stuff that cross-polinated during testing

pull/35/head
Jeffrey Walton 2015-07-27 19:03:14 -04:00
parent 05076dbdea
commit 383d9636a8
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
NAMESPACE_BEGIN(CryptoPP) NAMESPACE_BEGIN(CryptoPP)
#if 0
// This must be kept in sync with stdcpp.h because <memory> is included based on the same logic. // This must be kept in sync with stdcpp.h because <memory> is included based on the same logic.
#if ((__cplusplus >= 201103L) || (_MSC_VER >= 1600)) && !defined(__clang__) #if ((__cplusplus >= 201103L) || (_MSC_VER >= 1600)) && !defined(__clang__)
# include <memory> # include <memory>
@ -25,6 +26,7 @@ NAMESPACE_BEGIN(CryptoPP)
template<typename T> template<typename T>
using auto_ptr = std::unique_ptr<T>; using auto_ptr = std::unique_ptr<T>;
#endif #endif
#endif // 0
template <class T> class simple_ptr template <class T> class simple_ptr
{ {