mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
12 lines
151 B
C++
12 lines
151 B
C++
#ifndef STLCOMPAT_H
|
|
#define STLCOMPAT_H
|
|
|
|
#ifndef ISLE_COMPAT
|
|
#include <STL.H>
|
|
#else
|
|
#include <list>
|
|
using namespace std;
|
|
#endif
|
|
|
|
#endif // STLCOMPAT_H
|