-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -521,7 +521,11 @@ typedef uint64_t simde__mmask64; | |
#endif | ||
#if !defined(__mmask64) && defined(SIMDE_ENABLE_NATIVE_ALIASES) | ||
#if !defined(HEDLEY_INTEL_VERSION) | ||
typedef uint64_t __mask64; | ||
#if defined(HEDLEY_GCC_VERSION) | ||
typedef unsigned long long __mask64; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bd-jahn
Contributor
|
||
#else | ||
typedef uint64_t __mmask64; | ||
#endif | ||
#else | ||
#define __mmask64 uint64_t; | ||
#endif | ||
|
Gah, yes, I see the new typo here. Fixing now!