summaryrefslogtreecommitdiff
path: root/smartptr.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-27 19:03:14 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-27 19:03:14 -0400
commit383d9636a89fb640cae2276e5a0dc32549744d40 (patch)
tree0953a0bf0f63c42a7835b72df60756d52026bf83 /smartptr.h
parent05076dbdea07eac39f72803f6cdbca030069a6bc (diff)
downloadcryptopp-git-383d9636a89fb640cae2276e5a0dc32549744d40.tar.gz
Defined out the stuff that cross-polinated during testing
Diffstat (limited to 'smartptr.h')
-rw-r--r--smartptr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/smartptr.h b/smartptr.h
index 0ec83be2..3ddfc9a9 100644
--- a/smartptr.h
+++ b/smartptr.h
@@ -7,6 +7,7 @@
NAMESPACE_BEGIN(CryptoPP)
+#if 0
// 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__)
# include <memory>
@@ -25,6 +26,7 @@ NAMESPACE_BEGIN(CryptoPP)
template<typename T>
using auto_ptr = std::unique_ptr<T>;
#endif
+#endif // 0
template <class T> class simple_ptr
{