Fixes invalid ARM64 handling in CurlHandleManager

This commit is contained in:
Dmitry Vedenko 2021-05-27 13:28:21 +03:00
parent 938fbb33af
commit 1ac4df1f83
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ void GetOSString (std::ostringstream& output, const wxPlatformInfo& platformInfo
output << "x64";
#elif defined(__i386__) || defined(i386) || defined(_M_IX86) || defined(_X86_) || defined(__THW_INTEL)
output << "x86";
#elif
#elif defined(__arm64__) || defined(__aarch64__)
output << "arm64";
#elif defined(arm) || defined(__arm__) || defined(ARM) || defined(_ARM_)
output << "arm";