Skip to content

Commit

Permalink
fix clang type redef error
Browse files Browse the repository at this point in the history
  • Loading branch information
bd-jahn authored and mr-c committed Nov 23, 2024
1 parent 73e43dd commit f4daa86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simde/x86/avx512/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ typedef uint64_t simde__mmask64;
#endif
#if !defined(__mmask64) && defined(SIMDE_ENABLE_NATIVE_ALIASES)
#if !defined(HEDLEY_INTEL_VERSION)
#if defined(HEDLEY_GCC_VERSION)
#if defined(HEDLEY_GCC_VERSION) || (defined(__clang__) && SIMDE_DETECT_CLANG_VERSION_CHECK(3, 6, 0))
typedef unsigned long long __mmask64;
#else
typedef uint64_t __mmask64;
Expand Down

0 comments on commit f4daa86

Please sign in to comment.