You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cl version: 19.28.29617
Visual Studio version: 16.9.0 preview
error:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29617\include\experimental/coroutine(37): fatal error C1189: #error: The <experimental/coroutine> and <experimental/resumable> headers are only supported with /await and implement pre-C++20 coroutine support. Use <coroutine> for standard C++20 coroutines.
<experimental/coroutine> is not supported in preview version.
consider use under msvc.
maybe __has_include is a good choice to dertemin which file to include.
The text was updated successfully, but these errors were encountered:
It seems that VS2019 (without preview, 16.8.3 is unable to build cppcoro too for now.)
I remember that older version of cppcoro has a header <cppcoro/coutines.h> that works fine with both versions.
cl version: 19.28.29617
Visual Studio version: 16.9.0 preview
error:
<experimental/coroutine> is not supported in preview version.
consider use under msvc.
maybe __has_include is a good choice to dertemin which file to include.
The text was updated successfully, but these errors were encountered: