| 3078 | namespace Json { |
| 3079 | |
| 3080 | static bool containsControlCharacter(const char *str) { |
| 3081 | while (*str) { |
| 3082 | if (isControlCharacter(*(str++))) |
| 3083 | return true; |
| 3084 | } |
| 3085 | return false; |
| 3086 | } |
| 3087 | |
| 3088 | std::string valueToString(LargestInt value) { |
| 3089 | UIntToStringBuffer buffer; |
no test coverage detected