1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

liblzma: Omit unnecessary parenthesis in a preprocessor directive.

This commit is contained in:
Lasse Collin 2023-07-18 13:49:43 +03:00
parent 64ee0caaea
commit ef4a07ad94

View file

@ -23,9 +23,9 @@
// on Windows when using an MSVC compatible compiler. The Intel compiler
// can use the intrinsics without the header file.
#if defined(TUKLIB_FAST_UNALIGNED_ACCESS) \
&& (defined(_MSC_VER) \
&& defined(_MSC_VER) \
&& defined(_M_X64) \
&& !defined(__INTEL_COMPILER))
&& !defined(__INTEL_COMPILER)
# include <intrin.h>
#endif