From e746ec15fa6912835759c0f5b371fe04be722ae1 Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Wed, 4 Feb 2026 11:32:55 +0900 Subject: [PATCH] [C++] Remove todo asking to use assign_by_moving --- cpp/src/arrow/util/small_vector.h | 1 - 1 file changed, 1 deletion(-) 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_)); }