Skip to content

Commit

Permalink
MathExtras.h: guard intrin.h against clang
Browse files Browse the repository at this point in the history
  • Loading branch information
s1341 committed Jan 15, 2025
1 parent e987461 commit 285e5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MathExtras.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#if defined(_WIN32_WCE) && (_WIN32_WCE < 0x800)
#include "windowsce/intrin.h"
#elif defined(_MSC_VER)
#elif defined(_MSC_VER) && !defined(__clang__)
#include <intrin.h>
#endif

Expand Down

0 comments on commit 285e5bc

Please sign in to comment.