Skip to content

Commit

Permalink
Minor improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Feb 25, 2025
1 parent 33de855 commit c390a24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/src/io/parquet/stats_filter_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
namespace cudf::io::parquet::detail {

stats_expression_converter::stats_expression_converter(ast::expression const& expr,
size_type const& num_columns)
size_type num_columns)
: _num_columns{num_columns}
{
expr.accept(*this);
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/io/parquet/stats_filter_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class stats_caster_base {
*/
class stats_expression_converter : public ast::detail::expression_transformer {
public:
stats_expression_converter(ast::expression const& expr, size_type const& num_columns);
stats_expression_converter(ast::expression const& expr, size_type num_columns);

/**
* @copydoc ast::detail::expression_transformer::visit(ast::literal const& )
Expand Down

0 comments on commit c390a24

Please sign in to comment.