File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace cppcoro
18
18
auto sync_wait (AWAITABLE&& awaitable)
19
19
-> typename cppcoro::awaitable_traits<AWAITABLE&&>::await_result_t
20
20
{
21
- #if CPPCORO_COMPILER_MSVC && CPPCORO_COMPILER_MSVC < 19'00 '00000
21
+ #if CPPCORO_COMPILER_MSVC && CPPCORO_COMPILER_MSVC < 19'20 '00000
22
22
// HACK: Need to explicitly specify template argument to make_sync_wait_task
23
23
// here to work around a bug in MSVC when passing parameters by universal
24
24
// reference to a coroutine which causes the compiler to think it needs to
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ TEST_CASE("send/recv TCP/IPv4")
206
206
}()));
207
207
}
208
208
209
- #if !CPPCORO_COMPILER_MSVC || CPPCORO_COMPILER_MSVC > 192000000 || !CPPCORO_CPU_X86
209
+ #if !CPPCORO_COMPILER_MSVC || CPPCORO_COMPILER_MSVC >= 192000000 || !CPPCORO_CPU_X86
210
210
// HACK: Don't compile this function under MSVC x86.
211
211
// It results in an ICE under VS 2017.15 and earlier.
212
212
You can’t perform that action at this time.
0 commit comments