The following code compiles and runs just fine with GCC 8.3 and with Clang 10.0.1, whereas it fails miserably on MicroSoft shiny compiler.
#include <vector>
#include <range/v3/view/group_by.hpp>
int main(){
std::vector<int> edits{1,1,3,2,2,4,4,4,4,1,1,3,3,2};
auto xxx = ranges::subrange(edits.begin(), edits.end());
}
Is there some flag that I'm missing?