| 342 | void Serializer::add_uint32(const StringWrapper& name, uint32_t value) |
| 343 | { add_primitive(_stream, peek_group_info(), name, value); } |
| 344 | void Serializer::add_uint64(const StringWrapper& name, uint64_t value) |
| 345 | { add_primitive(_stream, peek_group_info(), name, value); } |
| 346 | void Serializer::add_bool(const StringWrapper& name, bool value) |
| 347 | { add_primitive(_stream, peek_group_info(), name, value); } |
| 348 | void Serializer::add_float(const StringWrapper& name, float value) |
nothing calls this directly
no test coverage detected