Skip to content

Commit

Permalink
WIP: [C++] Remove redundant default constructor/deconstructor in arro…
Browse files Browse the repository at this point in the history
…w::ArrayStatistics
  • Loading branch information
kou committed Aug 6, 2024
1 parent 51d50d7 commit 266ea3f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cpp/src/arrow/array/statistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ struct ARROW_EXPORT ArrayStatistics {
std::variant<bool, int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t,
uint64_t, util::Float16, float, double, std::string, std::string_view>;

ArrayStatistics() = default;
~ArrayStatistics() = default;

/// \brief The number of null values, may not be set
std::optional<int64_t> null_count = std::nullopt;

Expand Down

0 comments on commit 266ea3f

Please sign in to comment.