| 3058 | namespace Json { |
| 3059 | |
| 3060 | static bool containsControlCharacter(const char* str) { |
| 3061 | while (*str) { |
| 3062 | if (isControlCharacter(*(str++))) |
| 3063 | return true; |
| 3064 | } |
| 3065 | return false; |
| 3066 | } |
| 3067 | |
| 3068 | std::string valueToString(LargestInt value) { |
| 3069 | UIntToStringBuffer buffer; |
no test coverage detected