| 104 | using String = icu::UnicodeString; |
| 105 | |
| 106 | inline |
| 107 | String |
| 108 | toLocalString(std::string s) |
| 109 | { |
| 110 | return icu::UnicodeString::fromUTF8(std::move(s)); |
| 111 | } |
| 112 | |
| 113 | #if defined(__GNUC__) |
| 114 | // GNU GCC with -Weffc++ will issue a warning regarding the upcoming class, we want to silence it: |
no outgoing calls
no test coverage detected