Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for some compiler warnings in parquet/page_decode.cuh (#15518)
Clangd generates several warnings/errors in cpp/src/io/parquet/page_decode.cuh. One is in regards to a lambda argument shadowing a captured value. The others involve the use of `thrust::optional::value()` in device code...unlike pretty much every other member function, `value()` lacks the `__device__` decorator. This PR replaces two usages of `value()` with `operator*()` which does have the `__device__` decorator. Authors: - Ed Seidl (https://github.com/etseidl) Approvers: - David Wendt (https://github.com/davidwendt) - Nghia Truong (https://github.com/ttnghia) - Paul Mattione (https://github.com/pmattione-nvidia) - Vukasin Milovanovic (https://github.com/vuule) URL: #15518
- Loading branch information