| 215 | public: |
| 216 | template <typename CharType, size_t Size> |
| 217 | static StringPiece FromArray(const CharType (&array)[Size]) { |
| 218 | return StringPiece(&array[0], Size); |
| 219 | } |
| 220 | |
| 221 | private: |
| 222 | const char* m_ptr; |
nothing calls this directly
no test coverage detected