ScriptGlobal::Set(): don't explicitly give Namespace#Set() its default values

This commit is contained in:
Alexander A. Klimov 2023-02-10 15:55:10 +01:00
parent e61b380808
commit f3f2c943c7

View File

@ -59,7 +59,7 @@ void ScriptGlobal::Set(const String& name, const Value& value)
}
}
parent->Set(tokens[tokens.size() - 1], value, false, DebugInfo());
parent->Set(tokens[tokens.size() - 1], value);
}
}