| 357 | } |
| 358 | |
| 359 | void ReportProperties::Add(std::string_view property_name, std::string_view value) { |
| 360 | name_values.emplace_back(NameValue{std::string(property_name), std::string(value)}); |
| 361 | } |
| 362 | |
| 363 | void ReportProperties::Add(std::string_view property_name, uint64_t value) { |
| 364 | name_values.emplace_back(NameValue{std::string(property_name), std::to_string(value)}); |
no test coverage detected