File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,20 @@ jobs:
151
151
environment_script : " C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" ,
152
152
cxxver : 20,
153
153
}
154
+ - {
155
+ name : " Windows MSVC 2022 (x64) C++17" ,
156
+ os : windows-2022,
157
+ cxx : " cl" ,
158
+ environment_script : " C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat" ,
159
+ cxxver : 17,
160
+ }
161
+ - {
162
+ name : " Windows MSVC 2022 (x64) C++20" ,
163
+ os : windows-2022,
164
+ cxx : " cl" ,
165
+ environment_script : " C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat" ,
166
+ cxxver : 20,
167
+ }
154
168
155
169
steps :
156
170
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ TEST_CASE("exception thrown from recursive call can be caught by caller")
247
247
248
248
TEST_CASE (" exceptions thrown from nested call can be caught by caller" )
249
249
{
250
- #if _MSC_VER = = 1929 && _MSVC_LANG == 202002L
250
+ #if _MSC_VER > = 1929 && _MSVC_LANG == 202002L
251
251
/*
252
252
* Crashes. Known bug, reported in
253
253
* https://github.com/andreasbuhr/cppcoro/issues/53
You can’t perform that action at this time.
0 commit comments