From 861f9f76415009cab53289f1bec5e117950e3d2d Mon Sep 17 00:00:00 2001 From: Gera Shegalov Date: Fri, 2 Aug 2024 22:26:50 -0700 Subject: [PATCH] review Signed-off-by: Gera Shegalov --- cpp/src/io/parquet/decode_fixed.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/io/parquet/decode_fixed.hpp b/cpp/src/io/parquet/decode_fixed.hpp index cc26ae3e8df..170292e4b4f 100644 --- a/cpp/src/io/parquet/decode_fixed.hpp +++ b/cpp/src/io/parquet/decode_fixed.hpp @@ -25,14 +25,14 @@ namespace detail { void DecodePageDataFixed(cudf::detail::hostdevice_vector& pages, cudf::detail::hostdevice_vector const& chunks, std::size_t num_rows, - size_t min_row, + std::size_t min_row, int level_type_size, rmm::cuda_stream_view stream); void DecodePageDataFixedDict(cudf::detail::hostdevice_vector& pages, cudf::detail::hostdevice_vector const& chunks, std::size_t num_rows, - size_t min_row, + std::size_t min_row, int level_type_size, rmm::cuda_stream_view stream);