Skip to content

Commit a774463

Browse files
authored
[libc++][NFC] Fixed some wrongly spelled _LIBCPP_STD_VER in comments (#147008)
1 parent a34b175 commit a774463

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libcxx/include/__coroutine/coroutine_handle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,6 @@ struct hash<coroutine_handle<_Tp>> {
172172

173173
_LIBCPP_END_NAMESPACE_STD
174174

175-
#endif // __LIBCPP_STD_VER >= 20
175+
#endif // _LIBCPP_STD_VER >= 20
176176

177177
#endif // _LIBCPP___COROUTINE_COROUTINE_HANDLE_H

libcxx/include/__coroutine/coroutine_traits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ struct coroutine_traits : public __coroutine_traits_sfinae<_Ret> {};
4343

4444
_LIBCPP_END_NAMESPACE_STD
4545

46-
#endif // __LIBCPP_STD_VER >= 20
46+
#endif // _LIBCPP_STD_VER >= 20
4747

4848
#endif // _LIBCPP___COROUTINE_COROUTINE_TRAITS_H

libcxx/include/__coroutine/noop_coroutine_handle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ inline _LIBCPP_HIDE_FROM_ABI noop_coroutine_handle noop_coroutine() noexcept { r
9494

9595
_LIBCPP_END_NAMESPACE_STD
9696

97-
#endif // __LIBCPP_STD_VER >= 20
97+
#endif // _LIBCPP_STD_VER >= 20
9898

9999
#endif // _LIBCPP___COROUTINE_NOOP_COROUTINE_HANDLE_H

libcxx/include/__coroutine/trivial_awaitables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ struct suspend_always {
3535

3636
_LIBCPP_END_NAMESPACE_STD
3737

38-
#endif // __LIBCPP_STD_VER >= 20
38+
#endif // _LIBCPP_STD_VER >= 20
3939

4040
#endif // __LIBCPP___COROUTINE_TRIVIAL_AWAITABLES_H

0 commit comments

Comments
 (0)