| 178 | */ |
| 179 | template<typename CharT> |
| 180 | static size_t size(const std::basic_string<CharT>& str) noexcept { return str.size(); } |
| 181 | |
| 182 | template<typename CharT> |
| 183 | static size_t size(const CharT* str) noexcept { return std::char_traits<CharT>::length(str); } |
no outgoing calls
no test coverage detected