File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,6 +151,20 @@ jobs:
151151 environment_script : " C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" ,
152152 cxxver : 20,
153153 }
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+ }
154168
155169 steps :
156170 - 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")
247247
248248TEST_CASE (" exceptions thrown from nested call can be caught by caller" )
249249{
250- #if _MSC_VER = = 1929 && _MSVC_LANG == 202002L
250+ #if _MSC_VER > = 1929 && _MSVC_LANG == 202002L
251251/*
252252 * Crashes. Known bug, reported in
253253 * https://github.com/andreasbuhr/cppcoro/issues/53
You can’t perform that action at this time.
0 commit comments