-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not compatible with C++20 #458
Comments
what compiler are you using that generates an error? and what flags? |
I use Visual Studio 2019 Preview 5.0. But this should be a general issue of all C++20 ready compilers, as std::result of is removed in C++20 (https://en.cppreference.com/w/cpp/types/result_of) |
@F-I-D-O Are you actually getting it to generate an error? I am not able to get an error on the result_of in any compilers I try. I know how to fix it, but I was hoping to see a failing test first. |
Yes: This is a result of compilation of your example code, i.e.:
|
I can try it on in a couple of days. Does it mean that I try it with the branch |
Please reopen if this is not working on master (that's merged now)! |
In C++20 std::result_of is removed (Used in App.hpp).
The text was updated successfully, but these errors were encountered: