///////////////////////////////////////////////////////
| 99 | |
| 100 | //////////////////////////////////////////////////////////// |
| 101 | const U8StringCharTraits::char_type* U8StringCharTraits::find(const char_type* s, std::size_t n, const char_type& c) |
| 102 | { |
| 103 | return reinterpret_cast<const char_type*>( |
| 104 | std::char_traits<char>::find(reinterpret_cast<const char*>(s), n, static_cast<char>(c))); |
| 105 | } |
| 106 | |
| 107 | |
| 108 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected