| 155 | } |
| 156 | |
| 157 | StringUtf8Multilang StringUtf8Multilang::FromBuffer(std::string && s) |
| 158 | { |
| 159 | ASSERT(!s.empty(), ()); |
| 160 | StringUtf8Multilang res; |
| 161 | res.m_s = std::move(s); |
| 162 | ASSERT_GREATER(res.CountLangs(), 0, ()); |
| 163 | return res; |
| 164 | } |
nothing calls this directly
no test coverage detected