tadeja commented on PR #50705: URL: https://github.com/apache/arrow/pull/50705#issuecomment-5118185410
Now `vector_sort.cc` compiles successfully and fresh failing [`test-r-macos-as-cran` log](https://github.com/ursacomputing/crossbow/actions/runs/30450308864/job/90570515768#step:9:2228) points to this remaining newer failure ```console [ 87%] Building CXX object src/parquet/CMakeFiles/parquet_objlib.dir/arrow/reader.cc.o /Users/runner/work/crossbow/crossbow/arrow/cpp/src/parquet/arrow/reader.cc:735:46: error: no member named 'ranges' in namespace 'std' 735 | const auto first_invalid_offset = std::ranges::adjacent_find( | ~~~~~^ /Users/runner/work/crossbow/crossbow/arrow/cpp/src/parquet/arrow/reader.cc:740:26: error: no member named 'ranges' in namespace 'std' 740 | start + std::ranges::distance(run_offsets.begin(), first_invalid_offset); | ~~~~~^ 2 errors generated. make[2]: *** [src/parquet/CMakeFiles/parquet_objlib.dir/arrow/reader.cc.o] Error 1 ``` from yesterday's #50271 `std::ranges::adjacent_find(` and `std::ranges::distance(run_offsets.begin(), first_invalid_offset);` https://github.com/apache/arrow/pull/50271/changes#diff-6a73dc8ee650cf7b5b8a51f7d4f9f0197823416155c0de7de400294fea588f11R735-R740 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
