diff --git a/cpp/src/arrow/array/statistics.h b/cpp/src/arrow/array/statistics.h index fa399f92e8328..3be67950aa492 100644 --- a/cpp/src/arrow/array/statistics.h +++ b/cpp/src/arrow/array/statistics.h @@ -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