mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
15 lines
213 B
C++
15 lines
213 B
C++
#ifndef STLCOMPAT_H
|
|
#define STLCOMPAT_H
|
|
|
|
#ifndef ISLE_COMPAT
|
|
#include <STL.H>
|
|
#else
|
|
#include <algorithm>
|
|
#include <list>
|
|
using namespace std;
|
|
template <class T>
|
|
using List = list<T>;
|
|
#endif
|
|
|
|
#endif // STLCOMPAT_H
|