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
#include <vector> #include <range/v3/view/concat.hpp> int main() { std::vector<int> u, v; const auto w = u | ranges::views::concat(v); }
MSVC:
(7): error C2678: binary '|': no operator found which takes a left-hand operand of type 'std::vector>' (or there is no acceptable conversion) C:/data/msvc/14.36.32530-Pre/include\cstddef(43): note: could be 'std::byte std::operator |(const std::byte,const std::byte) noexcept' [found using argument-dependent lookup]
C:/data/msvc/14.36.32530-Pre/include\cstddef(43): note: could be 'std::byte std::operator |(const std::byte,const std::byte) noexcept' [found using argument-dependent lookup]
GCC reports something similar.
The text was updated successfully, but these errors were encountered:
Might be related: https://stackoverflow.com/questions/69854503/why-do-i-need-to-evaluate-range-v3-views-to-be-able-to-use-them-with-concat
Sorry, something went wrong.
No branches or pull requests
MSVC:
GCC reports something similar.
The text was updated successfully, but these errors were encountered: