| 361 | void Short(int16_t x, const char *name) { Named(x, name); } |
| 362 | void UShort(uint16_t x, const char *name) { Named(x, name); } |
| 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); } |
no outgoing calls
no test coverage detected