| 13 | bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" << endl; return true; } |
| 14 | bool Double(double d) { cout << "Double(" << d << ")" << endl; return true; } |
| 15 | bool RawNumber(const char* str, SizeType length, bool copy) { |
| 16 | cout << "Number(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl; |
| 17 | return true; |
| 18 | } |
| 19 | bool String(const char* str, SizeType length, bool copy) { |
| 20 | cout << "String(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl; |
| 21 | return true; |
nothing calls this directly
no outgoing calls
no test coverage detected