mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 10:27:24 +00:00
Ignore warning from simde on clang
This commit is contained in:
parent
73d657a21a
commit
794bd85371
1 changed files with 6 additions and 0 deletions
|
|
@ -8,7 +8,13 @@
|
|||
#define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
#include "data-types.h"
|
||||
#include "simd-string.h"
|
||||
#ifdef __clang__
|
||||
_Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wbitwise-instead-of-logical\"")
|
||||
#endif
|
||||
#include <simde/x86/avx2.h>
|
||||
#ifdef __clang__
|
||||
_Pragma("clang diagnostic pop")
|
||||
#endif
|
||||
|
||||
static bool has_sse4_2 = false, has_avx2 = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue