This commit is contained in:
@@ -5,9 +5,8 @@
|
||||
|
||||
namespace Porygon::Evaluation {
|
||||
EvaluationScope::EvaluationScope(map<Utilities::HashedString, shared_ptr<EvalValue>> *scriptVariables,
|
||||
int localVariableCount) {
|
||||
_scriptScope = scriptVariables;
|
||||
_localScope = map<uint64_t, shared_ptr<EvalValue>>();
|
||||
int localVariableCount) : _scriptScope(scriptVariables),
|
||||
_localScope(map<uint64_t, shared_ptr<EvalValue>>()) {
|
||||
}
|
||||
|
||||
void EvaluationScope::CreateVariable(const BoundVariableKey *key, const shared_ptr<EvalValue> &value) {
|
||||
|
||||
Reference in New Issue
Block a user