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>
|
2024-01-06 12:56:15 -05:00
|
|
|
#include <map>
|
2023-12-11 16:33:46 -05:00
|
|
|
#include <set>
|
2024-02-23 10:06:16 -05:00
|
|
|
#include <utility>
|
2024-01-06 12:56:15 -05:00
|
|
|
#include <vector>
|
2023-12-11 16:33:46 -05:00
|
|
|
using std::list;
|
2024-01-06 12:56:15 -05:00
|
|
|
using std::map;
|
2024-02-23 10:06:16 -05:00
|
|
|
using std::pair;
|
2023-12-11 16:33:46 -05:00
|
|
|
using std::set;
|
2024-01-06 12:56:15 -05:00
|
|
|
using std::vector;
|
2023-12-11 16:33:46 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // STLCOMPAT_H
|