mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-09 17:28:58 +00:00
Fix GH issue 12208 (#12224)
This commit is contained in:
parent
2cb642927b
commit
555e88982f
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
#ifdef _MSC_VER
|
||||
#include <codecvt>
|
||||
#include <locale.h>
|
||||
#elif defined(__APPLE__) or defined(__ANDROID__)
|
||||
#elif defined(__APPLE__) || defined(__ANDROID__)
|
||||
#include <codecvt>
|
||||
#else
|
||||
#include <limits>
|
||||
|
|
@ -110,7 +110,7 @@ class Locale {
|
|||
std::locale loc_;
|
||||
};
|
||||
|
||||
#if defined(__APPLE__) or defined(__ANDROID__)
|
||||
#if defined(__APPLE__) || defined(__ANDROID__)
|
||||
using Utf8Converter = std::wstring_convert<std::codecvt_utf8<wchar_t>>;
|
||||
#else
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue