Work to add C style entry points to library that allow most functionality
This commit is contained in:
@@ -22,11 +22,11 @@ public:
|
||||
bool operator ==(EvalValue* b) final{
|
||||
if (b->GetType()->GetClass() != TypeClass::String)
|
||||
return false;
|
||||
return this->_value == b->EvaluateString();
|
||||
return this->_value == *b->EvaluateString();
|
||||
};
|
||||
|
||||
string EvaluateString() final{
|
||||
return _value;
|
||||
string* EvaluateString() final{
|
||||
return &_value;
|
||||
}
|
||||
|
||||
shared_ptr<EvalValue> Clone() final{
|
||||
|
||||
Reference in New Issue
Block a user