File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 15
15
# pragma GCC system_header
16
16
#endif
17
17
18
- #define ATOMIC_FLAG_INIT {false}
19
- #define ATOMIC_VAR_INIT (__v ) {__v}
18
+ #define ATOMIC_FLAG_INIT \
19
+ { false }
20
+ #define ATOMIC_VAR_INIT (__v ) \
21
+ { __v }
20
22
21
23
#if _LIBCPP_STD_VER >= 20 && !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS )
22
- # if defined(_LIBCPP_CLANG_VER ) && _LIBCPP_CLANG_VER >= 1400
23
24
# pragma clang deprecated(ATOMIC_VAR_INIT)
24
- # endif
25
- #endif // _LIBCPP_STD_VER >= 20 && !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS)
25
+ #endif
26
26
27
27
#endif // _LIBCPP___ATOMIC_ATOMIC_INIT_H
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ libcxx/include/array
89
89
libcxx/include/__atomic/atomic_base.h
90
90
libcxx/include/__atomic/atomic_flag.h
91
91
libcxx/include/__atomic/atomic.h
92
- libcxx/include/__atomic/atomic_init.h
93
92
libcxx/include/__atomic/atomic_lock_free.h
94
93
libcxx/include/__atomic/atomic_sync.h
95
94
libcxx/include/__atomic/check_memory_order.h
You can’t perform that action at this time.
0 commit comments