isle/LEGO1/mxstl/stlcompat.h
Christian Semmler 96a33e4c6b Fix
2024-12-05 16:21:28 -07:00

26 lines
474 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 <utility>
#include <vector>
using std::list;
using std::map;
using std::multiset;
using std::pair;
using std::set;
using std::vector;
#endif
#endif // STLCOMPAT_H