| 45 | google::protobuf::Arena* const arena; |
| 46 | |
| 47 | std::string operator()(bool arg) { return absl::StrFormat("%d", arg); } |
| 48 | std::string operator()(int64_t arg) { return absl::StrFormat("%lld", arg); } |
| 49 | std::string operator()(uint64_t arg) { return absl::StrFormat("%llu", arg); } |
| 50 | std::string operator()(double arg) { return absl::StrFormat("%f", arg); } |
nothing calls this directly
no test coverage detected