summaryrefslogtreecommitdiff
path: root/embeddedcryptopp/stdcpp.h
blob: 9a468ab61ef77c704654450cb49302a0520016e3 (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
#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>

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

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

#endif