| 97 | } |
| 98 | |
| 99 | bool String(const Ch* str, SizeType length, bool copy = false) { |
| 100 | (void)copy; |
| 101 | PrettyPrefix(kStringType); |
| 102 | return Base::WriteString(str, length); |
| 103 | } |
| 104 | |
| 105 | #if RAPIDJSON_HAS_STDSTRING |
| 106 | bool String(const std::basic_string<Ch>& str) { |