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 committed Nov 15, 2024
1 parent 9cbeced commit c7fdcd2
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__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 6)))
typedef unsigned long long __mmask64;
#else
typedef uint64_t __mmask64;
Expand Down

0 comments on commit c7fdcd2

Please sign in to comment.