| 273 | } |
| 274 | |
| 275 | std::wstring LuaSTGPlus::Utf8ToUtf16(const char* p) |
| 276 | { |
| 277 | wstring tRet; |
| 278 | tRet.reserve(128); |
| 279 | Convert<Utf8Decoder, Utf16Encoder, wchar_t>(p, tRet); |
| 280 | return tRet; |
| 281 | } |
| 282 | |
| 283 | std::string LuaSTGPlus::Utf16ToUtf8(const wchar_t* p) |
| 284 | { |
nothing calls this directly
no outgoing calls
no test coverage detected