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
|
||||
};
|
||||
|
||||
std::unordered_map<std::string, bool> isEngineEnabled;
|
||||
std::map<std::string, bool> isEngineEnabled;
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
#ifndef USE_WIN32_API
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue