Isle
Loading...
Searching...
No Matches
stlcompat.h
Go to the documentation of this file.
1#ifndef STLCOMPAT_H
2#define STLCOMPAT_H
3
7
8#include "compat.h"
9
10#if defined(_MSC_VER) && _MSC_VER <= MSVC420_VERSION
11// Disable "nonstandard extension used : 'bool'" warning spam
12#pragma warning(disable : 4237)
13#include "mxstl.h"
14#else
15#include <algorithm>
16#include <list>
17#include <map>
18#include <set>
19#include <utility>
20#include <vector>
21using std::list;
22using std::map;
23using std::multiset;
24using std::pair;
25using std::set;
26using std::vector;
27#endif
28
29#endif // STLCOMPAT_H