| 289 | #endif |
| 290 | template<SizeType N> |
| 291 | GenericStringRef(const CharType (&str)[N]) RAPIDJSON_NOEXCEPT |
| 292 | : s(str), length(N-1) {} |
| 293 | |
| 294 | //! Explicitly create string reference from \c const character pointer |
| 295 | #ifndef __clang__ // -Wdocumentation |