Add modified mxstl.h (#107)

This commit is contained in:
pewpew
2023-08-12 12:32:43 -05:00
committed by GitHub
parent 4e0149361e
commit 87938e9b0e
4 changed files with 222 additions and 6 deletions

View File

@@ -18,13 +18,11 @@
// STL compatibility.
#if defined(_MSC_VER) && _MSC_VER <= MSVC420_VERSION
#include <STL.H>
#include "mxstl.h"
#else
#include <algorithm>
#include <list>
using namespace std;
template <class T>
using List = list<T>;
#endif
// We use `override` so newer compilers can tell us our vtables are valid,