summaryrefslogtreecommitdiff
path: root/stdcpp.h
blob: 30fa9a90fa8d1454f6db6967583893efb34e3e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef CRYPTOPP_STDCPP_H
#define CRYPTOPP_STDCPP_H

#include <stddef.h>
#include <assert.h>
#include <limits.h>
#include <memory>
#include <string>
#include <exception>
#include <typeinfo>


#ifdef _MSC_VER
#include <string.h>	// CodeWarrior doesn't have memory.h
#include <algorithm>
#include <map>
#include <vector>
#include <locale>

// re-disable this
#pragma warning(disable: 4231)
#endif

#if defined(_MSC_VER) && defined(_CRTAPI1)
#define CRYPTOPP_MSVCRT6
#endif

#endif