felipecrv opened a new pull request, #35422: URL: https://github.com/apache/arrow/pull/35422
### Rationale for this change `vector::at` performs bounds checking and can throw an exception [1]. Its use is discouraged and in this specific case, the access is provably safe because array is previously resized to `buffers.size()`. [1] https://en.cppreference.com/w/cpp/container/vector/at ### What changes are included in this PR? Use of `operator[]` instead of `at()`. ### Are these changes tested? By the existing concatenation tests. -- 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]
