Skip to content

Commit

Permalink
Fix compiler warnings in Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
jaepil committed Jul 16, 2024
1 parent 12f68fc commit ee92ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/acero/asof_join_node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,9 @@ class InputState {
// Hasher for key elements
mutable KeyHasher* key_hasher_;
// Owning node
AsofJoinNode* node_;
[[maybe_unused]] AsofJoinNode* node_;
// Index of this input
size_t index_;
[[maybe_unused]] size_t index_;
// True if hashing is mandatory
bool must_hash_;
// True if by-key values may be rehashed
Expand Down

0 comments on commit ee92ccf

Please sign in to comment.