[libcxx-commits] [libcxx] [libc++][NFC] Fixed some wrongly spelled `_LIBCPP_STD_VER` in comments (PR #147008)
Hristo Hristov via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jul 4 00:09:18 PDT 2025
https://github.com/H-G-Hristov created https://github.com/llvm/llvm-project/pull/147008
None
>From 699026952bf022e4218683bcebfcd687c7759e7b Mon Sep 17 00:00:00 2001
From: Hristo Hristov <hghristov.rmm at gmail.com>
Date: Fri, 4 Jul 2025 10:08:56 +0300
Subject: [PATCH] [libc++][NFC] Fixed some wrongly spelled `_LIBCPP_STD_VER` in
comments
---
libcxx/include/__coroutine/coroutine_handle.h | 2 +-
libcxx/include/__coroutine/coroutine_traits.h | 2 +-
libcxx/include/__coroutine/noop_coroutine_handle.h | 2 +-
libcxx/include/__coroutine/trivial_awaitables.h | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libcxx/include/__coroutine/coroutine_handle.h b/libcxx/include/__coroutine/coroutine_handle.h
index 88848544cf6bd..b7add258510eb 100644
--- a/libcxx/include/__coroutine/coroutine_handle.h
+++ b/libcxx/include/__coroutine/coroutine_handle.h
@@ -172,6 +172,6 @@ struct hash<coroutine_handle<_Tp>> {
_LIBCPP_END_NAMESPACE_STD
-#endif // __LIBCPP_STD_VER >= 20
+#endif // _LIBCPP_STD_VER >= 20
#endif // _LIBCPP___COROUTINE_COROUTINE_HANDLE_H
diff --git a/libcxx/include/__coroutine/coroutine_traits.h b/libcxx/include/__coroutine/coroutine_traits.h
index 78f05341f7486..60f7ca2311c6b 100644
--- a/libcxx/include/__coroutine/coroutine_traits.h
+++ b/libcxx/include/__coroutine/coroutine_traits.h
@@ -43,6 +43,6 @@ struct coroutine_traits : public __coroutine_traits_sfinae<_Ret> {};
_LIBCPP_END_NAMESPACE_STD
-#endif // __LIBCPP_STD_VER >= 20
+#endif // _LIBCPP_STD_VER >= 20
#endif // _LIBCPP___COROUTINE_COROUTINE_TRAITS_H
diff --git a/libcxx/include/__coroutine/noop_coroutine_handle.h b/libcxx/include/__coroutine/noop_coroutine_handle.h
index c95d85d5484c4..2b2838b6bf49b 100644
--- a/libcxx/include/__coroutine/noop_coroutine_handle.h
+++ b/libcxx/include/__coroutine/noop_coroutine_handle.h
@@ -94,6 +94,6 @@ inline _LIBCPP_HIDE_FROM_ABI noop_coroutine_handle noop_coroutine() noexcept { r
_LIBCPP_END_NAMESPACE_STD
-#endif // __LIBCPP_STD_VER >= 20
+#endif // _LIBCPP_STD_VER >= 20
#endif // _LIBCPP___COROUTINE_NOOP_COROUTINE_HANDLE_H
diff --git a/libcxx/include/__coroutine/trivial_awaitables.h b/libcxx/include/__coroutine/trivial_awaitables.h
index b604bd3c2d8ad..7cb7f4dfeb78c 100644
--- a/libcxx/include/__coroutine/trivial_awaitables.h
+++ b/libcxx/include/__coroutine/trivial_awaitables.h
@@ -35,6 +35,6 @@ struct suspend_always {
_LIBCPP_END_NAMESPACE_STD
-#endif // __LIBCPP_STD_VER >= 20
+#endif // _LIBCPP_STD_VER >= 20
#endif // __LIBCPP___COROUTINE_TRIVIAL_AWAITABLES_H
More information about the libcxx-commits
mailing list