summaryrefslogtreecommitdiff
path: root/external/crypto++-5.6.3/stdcpp.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /external/crypto++-5.6.3/stdcpp.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'external/crypto++-5.6.3/stdcpp.h')
-rw-r--r--external/crypto++-5.6.3/stdcpp.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/external/crypto++-5.6.3/stdcpp.h b/external/crypto++-5.6.3/stdcpp.h
new file mode 100644
index 0000000..b3edab7
--- /dev/null
+++ b/external/crypto++-5.6.3/stdcpp.h
@@ -0,0 +1,55 @@
+#ifndef CRYPTOPP_STDCPP_H
+#define CRYPTOPP_STDCPP_H
+
+#if _MSC_VER >= 1500
+#define _DO_NOT_DECLARE_INTERLOCKED_INTRINSICS_IN_MEMORY
+#include <intrin.h>
+#endif
+
+#include <string>
+#include <memory>
+#include <exception>
+#include <typeinfo>
+#include <algorithm>
+#include <functional>
+#include <utility>
+#include <vector>
+#include <limits>
+#include <deque>
+#include <list>
+#include <map>
+#include <new>
+
+#if _MSC_VER >= 1600
+// for make_unchecked_array_iterator
+#include <iterator>
+#endif
+
+#include <cstdlib>
+#include <cstddef>
+#include <cstring>
+#include <climits>
+#include <cassert>
+
+#ifdef CRYPTOPP_INCLUDE_VECTOR_CC
+// workaround needed on Sun Studio 12u1 Sun C++ 5.10 SunOS_i386 128229-02 2009/09/21
+#include <vector.cc>
+#endif
+
+// for alloca
+#if defined(CRYPTOPP_BSD_AVAILABLE)
+#include <stdlib.h>
+#elif defined(CRYPTOPP_UNIX_AVAILABLE) || defined(__sun) || defined(QNX)
+#include <alloca.h>
+#elif defined(CRYPTOPP_WIN32_AVAILABLE) || defined(__MINGW32__) || defined(__BORLANDC__)
+#include <malloc.h>
+#endif
+
+#ifdef _MSC_VER
+#pragma warning(disable: 4231) // re-disable this
+#ifdef _CRTAPI1
+#define CRYPTOPP_MSVCRT6
+#endif
+#endif
+
+#endif