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:
aryanrawlani28 2020-09-02 01:28:03 +05:30 committed by Eugene Sandulenko
parent f4d4283f79
commit 58a9de8092
2 changed files with 2 additions and 2 deletions

View file

@ -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