mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
6b1c75ab5a
* Refactor LegoContainer * Fix name * Fix build * Refactor some includes * Update STL compat * Fix * Fix annotations
24 lines
453 B
C++
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
|