Mingw doesn't seem to recognize intert_or_assign, so make it only use that on GCC
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2019-06-06 20:43:36 +02:00
parent 29561c7ef5
commit 4464cece57
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 6 additions and 0 deletions

View File

@ -10,15 +10,21 @@ EvaluationScope::EvaluationScope(unordered_map<int, shared_ptr<EvalValue>> *scri
void EvaluationScope::CreateVariable(int scope, int id, shared_ptr<EvalValue> value) {
if (scope == 0){
#if defined(__GNUC__)
_scriptScope->insert_or_assign(id, value);
#endif
} else{
#if defined(__GNUC__)
_localScope[scope - 1].insert_or_assign(id, value);
#endif
}
}
void EvaluationScope::SetVariable(int scope, int id, shared_ptr<EvalValue> value) {
if (scope == 0){
#if defined(__GNUC__)
_scriptScope->insert_or_assign(id, value);
#endif
} else{
_localScope[scope - 1][id] = value;
}