| 276 | #endif |
| 277 | template<SizeType N> |
| 278 | GenericStringRef(const CharType (&str)[N]) RAPIDJSON_NOEXCEPT |
| 279 | : s(str), length(N-1) {} |
| 280 | |
| 281 | //! Explicitly create string reference from \c const character pointer |
| 282 | #ifndef __clang__ // -Wdocumentation |