| 213 | |
| 214 | #if defined(_WIN32) |
| 215 | const char* String::ToUTF8(const wchar_t* value,char buffer[_MAX_PATH]) { |
| 216 | WideCharToMultiByte(CP_UTF8, 0, value, -1, buffer, _MAX_PATH, NULL, NULL); |
| 217 | return buffer; |
| 218 | } |
| 219 | #endif |
| 220 | |
| 221 | template float String::ToNumber(Exception& ex, float failValue, const char* value, size_t size); |
nothing calls this directly
no outgoing calls
no test coverage detected