| 49 | } |
| 50 | |
| 51 | StringAnsi MUtils::ToStringAnsi(MString* str) |
| 52 | { |
| 53 | if (str == nullptr) |
| 54 | return StringAnsi::Empty; |
| 55 | return StringAnsi(MCore::String::GetChars(str)); |
| 56 | } |
| 57 | |
| 58 | void MUtils::ToString(MString* str, String& result) |
| 59 | { |
no test coverage detected