Removed ununused directive
This commit is contained in:
parent
81d57f6027
commit
a747c60f32
|
@ -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) {
|
void EvaluationScope::SetVariable(int scope, int id, shared_ptr<EvalValue> value) {
|
||||||
if (scope == 0){
|
if (scope == 0){
|
||||||
#if defined(__GNUC__)
|
|
||||||
_scriptScope->at(id) = value;
|
_scriptScope->at(id) = value;
|
||||||
#endif
|
|
||||||
} else{
|
} else{
|
||||||
_localScope[scope - 1][id] = value;
|
_localScope[scope - 1][id] = value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue