Skip to content

Commit a35faec

Browse files
committed
[libc++](NFC) fix wrong __has_include
The parameter passed to __has_include has to be quoted by `<>` or `"`, not both.
1 parent 6cac792 commit a35faec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/locale.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# define _CTYPE_DISABLE_MACROS
3535
#endif
3636

37-
#if __has_include("<langinfo.h>")
37+
#if __has_include(<langinfo.h>)
3838
# include <langinfo.h>
3939
#endif
4040

0 commit comments

Comments
 (0)