[libcxx-commits] [libcxx] [libcxx] Fix the #endif comments (PR #120949)
Petr Hosek via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Dec 23 01:11:46 PST 2024
https://github.com/petrhosek created https://github.com/llvm/llvm-project/pull/120949
The order of comments is swapped.
>From 707ad17952f241ac9ebf91f6fd0ab49b246c619a Mon Sep 17 00:00:00 2001
From: Petr Hosek <phosek at google.com>
Date: Mon, 23 Dec 2024 01:07:55 -0800
Subject: [PATCH] [libcxx] Fix the #endif comments
The order of comments is swapped.
---
libcxx/include/stdio.h | 6 +++---
libcxx/include/stdlib.h | 4 ++--
libcxx/include/wchar.h | 4 ++--
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/libcxx/include/stdio.h b/libcxx/include/stdio.h
index d1e57b08f5da47..d8e22a7f16976a 100644
--- a/libcxx/include/stdio.h
+++ b/libcxx/include/stdio.h
@@ -120,7 +120,7 @@ void perror(const char* s);
# undef putchar
# undef getchar
-# endif
-# endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
+# endif // __cplusplus
+# endif // _LIBCPP_STDIO_H
-#endif // _LIBCPP_STDIO_H
+#endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
diff --git a/libcxx/include/stdlib.h b/libcxx/include/stdlib.h
index e32b7b7d751b3e..a17fc0da220cc9 100644
--- a/libcxx/include/stdlib.h
+++ b/libcxx/include/stdlib.h
@@ -149,6 +149,6 @@ inline _LIBCPP_HIDE_FROM_ABI lldiv_t div(long long __x, long long __y) _NOEXCEPT
# endif // _LIBCPP_MSVCRT
} // extern "C++"
# endif // __cplusplus
-# endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
+# endif // _LIBCPP_STDLIB_H
-#endif // _LIBCPP_STDLIB_H
+#endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
diff --git a/libcxx/include/wchar.h b/libcxx/include/wchar.h
index 436027b7842aeb..5e6dc1663e3274 100644
--- a/libcxx/include/wchar.h
+++ b/libcxx/include/wchar.h
@@ -206,6 +206,6 @@ size_t wcsnrtombs(
} // extern "C"
# endif // __cplusplus && (_LIBCPP_MSVCRT || __MVS__)
# endif // _LIBCPP_HAS_WIDE_CHARACTERS
-# endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
+# endif // _LIBCPP_WCHAR_H
-#endif // _LIBCPP_WCHAR_H
+#endif // defined(__cplusplus) && __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
More information about the libcxx-commits
mailing list