We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This line in type_traits.h
template <typename T> using result_of_t = typename std::result_of<T>::type;
Does not compile on MSVC because std::result_of was removed
I think you are supposed to use std::invoke_result, but switching to it just results in other compilation issues
The text was updated successfully, but these errors were encountered:
This is a duplicate of #649, and the discussion includes a workaround. See also #705 as well.
Sorry, something went wrong.
No branches or pull requests
This line in type_traits.h
Does not compile on MSVC because std::result_of was removed
I think you are supposed to use std::invoke_result, but switching to it just results in other compilation issues
The text was updated successfully, but these errors were encountered: