| 338 | *reinterpret_cast<string*>(data_) = value; |
| 339 | } |
| 340 | void SetFloatValue(float value) { |
| 341 | TYPE_CHECK(FieldDescriptor::CPPTYPE_FLOAT, |
| 342 | "MapValueRef::SetFloatValue"); |
| 343 | *reinterpret_cast<float*>(data_) = value; |
| 344 | } |
| 345 | void SetDoubleValue(double value) { |
| 346 | TYPE_CHECK(FieldDescriptor::CPPTYPE_DOUBLE, |
| 347 | "MapValueRef::SetDoubleValue"); |
nothing calls this directly
no outgoing calls
no test coverage detected