Skip to content

Commit

Permalink
Resolve R linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 9, 2024
1 parent a347f92 commit b4767cd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions r/src/altrep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ class ArrowAltrepData {

const std::shared_ptr<ChunkedArray>& chunked_array() { return chunked_array_; }

arrow::ChunkLocation locate(int64_t index) {
return resolver_.Resolve(index);
}
arrow::ChunkLocation locate(int64_t index) { return resolver_.Resolve(index); }

private:
std::shared_ptr<ChunkedArray> chunked_array_;
Expand Down

0 comments on commit b4767cd

Please sign in to comment.