| 170 | } |
| 171 | |
| 172 | StringValueBase::StringValueBase(TypeId typeId, const std::string& buf) : Value(typeId) { |
| 173 | read(buf); |
| 174 | } |
| 175 | |
| 176 | int StringValueBase::read(const std::string& buf) { |
| 177 | value_ = buf; |
nothing calls this directly
no outgoing calls
no test coverage detected