Skip to content

Commit 42214df

Browse files
Fix #else if
1 parent 2f7ab3b commit 42214df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libcxx/include/ccomplex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
using __standard_header_ccomplex _LIBCPP_DEPRECATED_("removed in C++20. Include <complex> instead.") = void;
2929
using __use_standard_header_ccomplex = __standard_header_ccomplex;
3030

31-
#else if _LIBCPP_STD_VER >= 17
31+
#elif _LIBCPP_STD_VER >= 17
3232

3333
using __standard_header_ccomplex _LIBCPP_DEPRECATED_("Include <complex> instead.") = void;
3434
using __use_standard_header_ccomplex = __standard_header_ccomplex;

libcxx/include/cstdalign

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Macros:
4545
using __standard_header_cstdalign _LIBCPP_DEPRECATED_("removed in C++20.") = void;
4646
using __use_standard_header_cstdalign = __standard_header_cstdalign;
4747

48-
#else if _LIBCPP_STD_VER >= 17
48+
#elif _LIBCPP_STD_VER >= 17
4949

5050
using __standard_header_cstdalign _LIBCPP_DEPRECATED = void;
5151
using __use_standard_header_cstdalign = __standard_header_cstdalign;

libcxx/include/cstdbool

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Macros:
3333
using __standard_header_cstdbool _LIBCPP_DEPRECATED_("removed in C++20.") = void;
3434
using __use_standard_header_cstdbool = __standard_header_cstdbool;
3535

36-
#else if _LIBCPP_STD_VER >= 17
36+
#elif _LIBCPP_STD_VER >= 17
3737

3838
using __standard_header_cstdbool _LIBCPP_DEPRECATED = void;
3939
using __use_standard_header_cstdbool = __standard_header_cstdbool;

libcxx/include/ctgmath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
using __standard_header_ctgmath _LIBCPP_DEPRECATED_("removed in C++20. Include <cmath> and <complex> instead.") = void;
3131
using __use_standard_header_ctgmath = __standard_header_ctgmath;
3232

33-
#else if _LIBCPP_STD_VER >= 17
33+
#elif _LIBCPP_STD_VER >= 17
3434

3535
using __standard_header_ctgmath _LIBCPP_DEPRECATED_("Include <cmath> and <complex> instead.") = void;
3636
using __use_standard_header_ctgmath = __standard_header_ctgmath;

0 commit comments

Comments
 (0)