Skip to content

Commit c4a0d71

Browse files
authored
[libc] Fix ifdef in compiler.h. (#172324)
1 parent e7dd7b8 commit c4a0d71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/macros/properties/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#define LIBC_COMPILER_IS_MSVC
3939
// https://learn.microsoft.com/en-us/cpp/preprocessor/predefined-macros
4040
#define LIBC_COMPILER_MSVC_VER (_MSC_VER)
41-
#ifdef(_M_X64)
41+
#ifdef _M_X64
4242
#define LIBC_COMPILER_IS_MSVC_X64
4343
#else
4444
#define LIBC_COMPILER_IS_MSVC_X86

0 commit comments

Comments
 (0)