isle/LEGO1/mxstl/stlcompat.h
Christian Semmler 6b1c75ab5a
Refactor LegoContainer (#587)
* Refactor LegoContainer

* Fix name

* Fix build

* Refactor some includes

* Update STL compat

* Fix

* Fix annotations
2024-02-23 16:06:16 +01:00

24 lines
453 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::pair;
using std::set;
using std::vector;
#endif
#endif // STLCOMPAT_H