Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jul 16, 2024
1 parent f9136fb commit da93f57
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions cpp/src/arrow/array/statistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,10 @@ struct ARROW_EXPORT ArrayStatistics {
}

/// \brief Check two statistics for equality
bool operator==(const ArrayStatistics& other) const {
return Equals(other);
}
bool operator==(const ArrayStatistics& other) const { return Equals(other); }

/// \brief Check two statistics for not equality
bool operator!=(const ArrayStatistics& other) const {
return !Equals(other);
}
bool operator!=(const ArrayStatistics& other) const { return !Equals(other); }
};

} // namespace arrow

0 comments on commit da93f57

Please sign in to comment.