liblzma: Omit unnecessary parenthesis in a preprocessor directive.

This commit is contained in:
Lasse Collin 2023-07-18 13:49:43 +03:00
parent abc1d5601b
commit 40392c19f7
1 changed files with 2 additions and 2 deletions

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