Open socec opened 6 years ago
Upstream issue: https://github.com/ericniebler/range-v3/issues/444
Upstream fix: https://github.com/ericniebler/range-v3/pull/446/
The problem is observable when trying to compile the following snippet without this fix:
#include <vector> #include <range/v3/all.hpp> int main() { std::vector<int> vec{1, 2, 3}; auto view = ranges::any_view<const int&>(vec); }
All CLA requirements met.
Upstream issue: https://github.com/ericniebler/range-v3/issues/444
Upstream fix: https://github.com/ericniebler/range-v3/pull/446/
The problem is observable when trying to compile the following snippet without this fix: