Fix use of STL's std::map + std::vector

This commit is contained in:
Anonymous Maarten 2024-01-06 12:54:20 +01:00
parent e8cd47e65c
commit 2410ab8944

View File

@ -10,9 +10,13 @@
#else
#include <algorithm>
#include <list>
#include <map>
#include <set>
#include <vector>
using std::list;
using std::map;
using std::set;
using std::vector;
#endif
#endif // STLCOMPAT_H