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
Building chapters 12 and 13 in MSVC 16.10.4 results in an error:
C:\temp\Cpp-High-Performance-Second-Edition-master\Chapter12\resumable.h(21,8): error C2039: 'coroutine_handle': is not a member of 'std'
And the message from the compiler tells what is wrong:
The contents of <coroutine> are not available with /await.
Remove /await or use /await:strict for standard coroutines.
Use <experimental/coroutine> for legacy /await support.
Replacing /await with /await:strict fixes this issue.
The text was updated successfully, but these errors were encountered:
Building chapters 12 and 13 in MSVC 16.10.4 results in an error:
And the message from the compiler tells what is wrong:
Replacing
/await
with/await:strict
fixes this issue.The text was updated successfully, but these errors were encountered: