Open tower120 opened 7 years ago
VS version of range-v3 doesn't have make_iterator_range, instead it uses make_range (which standard ranges-v3 do not have).
make_iterator_range
make_range
Due to this you can't have crosscompiler code with ranges...
I agree the portability impact of this name difference is large. I'll take a look at specifically updating this part of the library from upstream.
VS version of range-v3 doesn't have
make_iterator_range
, instead it usesmake_range
(which standard ranges-v3 do not have).Due to this you can't have crosscompiler code with ranges...