From 266ea3f420dc3bcad0dfaca11b3bbe87a23e6791 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 6 Aug 2024 17:27:52 +0900 Subject: [PATCH] WIP: [C++] Remove redundant default constructor/deconstructor in arrow::ArrayStatistics --- cpp/src/arrow/array/statistics.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/cpp/src/arrow/array/statistics.h b/cpp/src/arrow/array/statistics.h index 7357e27f41f5b..405809848a68f 100644 --- a/cpp/src/arrow/array/statistics.h +++ b/cpp/src/arrow/array/statistics.h @@ -38,9 +38,6 @@ struct ARROW_EXPORT ArrayStatistics { std::variant; - ArrayStatistics() = default; - ~ArrayStatistics() = default; - /// \brief The number of null values, may not be set std::optional null_count = std::nullopt;