Initial work on iterators, rework of variable handling by including actual string
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2019-06-23 15:58:14 +02:00
parent 1a84661c79
commit 76b8ba3ebc
25 changed files with 185 additions and 78 deletions

View File

@@ -28,8 +28,8 @@ namespace Porygon::Evaluation {
return this->_hash == b->GetHashCode();
};
const u16string *EvaluateString() const final {
return &_value;
const u16string EvaluateString() const final {
return _value;
}
const shared_ptr<EvalValue> Clone() const final {