| 363 | void Int(int32_t x, const char *name) { Named(x, name); } |
| 364 | void UInt(uint32_t x, const char *name) { Named(x, name); } |
| 365 | void Long(int64_t x) { s += NumToString(x); } |
| 366 | void ULong(uint64_t x) { s += NumToString(x); } |
| 367 | void Float(float x) { s += NumToString(x); } |
| 368 | void Double(double x) { s += NumToString(x); } |
no test coverage detected