Print errors

This commit is contained in:
Federico Cecchetto
2021-11-08 01:36:48 +01:00
parent eee68760e4
commit 640fb032ea
9 changed files with 191 additions and 50 deletions

View File

@ -18,9 +18,9 @@ namespace gsc
unsigned int size() const;
std::vector<scripting::script_value> get_raw() const;
scripting::script_value get(const int index) const;
scripting::value_wrap get(const int index) const;
scripting::script_value operator[](const int index) const
scripting::value_wrap operator[](const int index) const
{
return this->get(index);
}