mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
19 lines
349 B
C
19 lines
349 B
C
|
#ifndef STLCOMPAT_H
|
||
|
#define STLCOMPAT_H
|
||
|
|
||
|
#include "compat.h"
|
||
|
|
||
|
#if defined(_MSC_VER) && _MSC_VER <= MSVC420_VERSION
|
||
|
// Disable "nonstandard extension used : 'bool'" warning spam
|
||
|
#pragma warning(disable : 4237)
|
||
|
#include "mxstl.h"
|
||
|
#else
|
||
|
#include <algorithm>
|
||
|
#include <list>
|
||
|
#include <set>
|
||
|
using std::list;
|
||
|
using std::set;
|
||
|
#endif
|
||
|
|
||
|
#endif // STLCOMPAT_H
|