Line 128 of Field.hpp is
std::string value() const { return _value; }
The line should be changed to return a reference?
std::string& value() const { return _value; }
Sorry, just realized the change should be to
const std::string& value() const { return _value; }
(forgot the const)
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
Sorry, just realized the change should be to
const std::string& value() const { return _value; }
(forgot the const)