mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-23 06:25:19 -07:00
Remove incorrect iOS include
This commit is contained in:
parent
21e0d284f6
commit
e7f63678d1
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ wchar_t g_decimalSeparator = L'.';
|
||||||
#define Calc_UInt32x32To64(a, b) ((uint64_t)((uint32_t)(a)) * (uint64_t)((uint32_t)(b)))
|
#define Calc_UInt32x32To64(a, b) ((uint64_t)((uint32_t)(a)) * (uint64_t)((uint32_t)(b)))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) || defined(__EMSCRIPTEN__) || defined(__APPLE__)
|
#elif defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) || defined(__EMSCRIPTEN__)
|
||||||
|
|
||||||
#ifndef Calc_UInt32x32To64
|
#ifndef Calc_UInt32x32To64
|
||||||
#define Calc_UInt32x32To64(a, b) (uint64_t)((uint64_t)(uint32_t)(a) * (uint32_t)(b))
|
#define Calc_UInt32x32To64(a, b) (uint64_t)((uint64_t)(uint32_t)(a) * (uint32_t)(b))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue