isle/LEGO1/mxstl/stlcompat.h
2024-01-06 13:10:59 +01:00

23 lines
417 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 <map>
#include <set>
#include <vector>
using std::list;
using std::map;
using std::set;
using std::vector;
#endif
#endif // STLCOMPAT_H