diff --git a/cpp/src/arrow/util/small_vector.h b/cpp/src/arrow/util/small_vector.h index f371e647152..b740f458c9a 100644 --- a/cpp/src/arrow/util/small_vector.h +++ b/cpp/src/arrow/util/small_vector.h @@ -238,7 +238,6 @@ class StaticVectorImpl { StaticVectorImpl& operator=(StaticVectorImpl&& other) noexcept { if (ARROW_PREDICT_TRUE(&other != this)) { - // TODO move_assign? storage_.destroy(); storage_.move_construct(std::move(other.storage_)); }