Removed ununused directive

This commit is contained in:
Deukhoofd 2019-06-07 12:48:13 +02:00
parent 81d57f6027
commit a747c60f32
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 0 additions and 2 deletions

View File

@ -18,9 +18,7 @@ void EvaluationScope::CreateVariable(int scope, int id, shared_ptr<EvalValue> va
void EvaluationScope::SetVariable(int scope, int id, shared_ptr<EvalValue> value) {
if (scope == 0){
#if defined(__GNUC__)
_scriptScope->at(id) = value;
#endif
} else{
_localScope[scope - 1][id] = value;
}