Hi!
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.
Hi!
When compiling this project under MSVC 2019 with the standard set to C++20, the
Seq.hheader fails with error:result_ofwas depricated in C++17 and has been removed in C++20, and according to notes on cppreference the preferred alternative is to useinvoke_result.