File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 27
27
GIT_FETCH_JOBS : 8
28
28
NET_RETRY_COUNT : 5
29
29
DEFAULT_BUILD_VARIANT : release
30
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
30
31
31
32
jobs :
32
33
posix :
@@ -252,10 +253,13 @@ jobs:
252
253
253
254
- toolset : clang
254
255
cxxstd : " 11,14"
255
- os : macos-11
256
+ os : macos-12
256
257
- toolset : clang
257
258
cxxstd : " 20"
258
- os : macos-12
259
+ os : macos-13
260
+ - toolset : clang
261
+ cxxstd : " 20"
262
+ os : macos-14
259
263
260
264
runs-on : ${{matrix.os}}
261
265
container : ${{matrix.container}}
Original file line number Diff line number Diff line change @@ -131,11 +131,11 @@ struct nil {
131
131
#else
132
132
operator T const &() const
133
133
#endif
134
- { nfp_detail::report_access_to_invalid_parameter (true ); static T* v = 0 ; BOOST_TEST_UNREACHABLE_RETURN (*v ); }
134
+ { nfp_detail::report_access_to_invalid_parameter (true ); BOOST_TEST_UNREACHABLE_RETURN (*static_cast <T*>( 0 ) ); }
135
135
136
136
template <typename T>
137
137
T any_cast () const
138
- { nfp_detail::report_access_to_invalid_parameter (true ); static typename remove_reference<T>::type* v = 0 ; BOOST_TEST_UNREACHABLE_RETURN (*v ); }
138
+ { nfp_detail::report_access_to_invalid_parameter (true ); BOOST_TEST_UNREACHABLE_RETURN (* static_cast < typename std:: remove_reference<T>::type*>( 0 ) ); }
139
139
140
140
template <typename Arg1>
141
141
nil operator ()( Arg1 const & )
You can’t perform that action at this time.
0 commit comments