isle/LEGO1/mxstl/stlcompat.h

25 lines
453 B
C
Raw Normal View History

2023-12-11 16:33:46 -05:00
#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>
2023-12-11 16:33:46 -05:00
#include <set>
#include <utility>
#include <vector>
2023-12-11 16:33:46 -05:00
using std::list;
using std::map;
using std::pair;
2023-12-11 16:33:46 -05:00
using std::set;
using std::vector;
2023-12-11 16:33:46 -05:00
#endif
#endif // STLCOMPAT_H