1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-12 01:42:48 -05:00

Don't use team 'x64' for '64-bit'

This commit is contained in:
WHR
2020-12-15 14:56:06 +08:00
parent a9965c5580
commit 15168950e5
4 changed files with 6 additions and 6 deletions

View File

@@ -77,9 +77,9 @@ public:
virtual ~ICpuInfo() = default;
# if defined(__x86_64__) || defined(_M_AMD64) || defined (__arm64__) || defined (__aarch64__)
inline constexpr static bool isX64() { return true; }
inline constexpr static bool is64bit() { return true; }
# else
inline constexpr static bool isX64() { return false; }
inline constexpr static bool is64bit() { return false; }
# endif
virtual Assembly::Id assembly() const = 0;