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
When compiling this project under MSVC 2019 with the standard set to C++20, the Seq.h header fails with error:
Seq.h(37,45): error C2653: 'result_of': is not a class or namespace name
result_of was depricated in C++17 and has been removed in C++20, and according to notes on cppreference the preferred alternative is to use invoke_result.
The text was updated successfully, but these errors were encountered:
Hi!
When compiling this project under MSVC 2019 with the standard set to C++20, the
Seq.h
header fails with error:result_of
was depricated in C++17 and has been removed in C++20, and according to notes on cppreference the preferred alternative is to useinvoke_result
.The text was updated successfully, but these errors were encountered: