DEVTOOLS: CREATE_PROJECT: Use map instead of unordered_map
- No C11 support yet, revert to use map to fix build
This commit is contained in:
parent
f4d4283f79
commit
58a9de8092
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ enum ProjectType {
|
||||||
kProjectXcode
|
kProjectXcode
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unordered_map<std::string, bool> isEngineEnabled;
|
std::map<std::string, bool> isEngineEnabled;
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
#ifndef USE_WIN32_API
|
#ifndef USE_WIN32_API
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <unordered_map>
|
#include <map>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue