From da93f57b411d4ef9883d93b07c4a0be446f0f0b2 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 16 Jul 2024 17:29:40 +0900 Subject: [PATCH] Fix style --- cpp/src/arrow/array/statistics.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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