Skip to content

Commit 1bd778b

Browse files
committed
refactor: replace arrow::util::span with std::span
1 parent ce3a066 commit 1bd778b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cpp/src/arrow/util/span_test.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ using testing::ElementsAre;
2626
using testing::ElementsAreArray;
2727
using testing::PrintToString;
2828

29-
namespace arrow_util_span_test {
30-
3129
template <typename T>
3230
std::ostream& operator<<(std::ostream& os, const std::span<T>& span) {
3331
// Inefficient but good enough for testing
@@ -198,5 +196,3 @@ TEST(Span, Mutation) {
198196
set(std::span(arr).subspan(2, 2), 23);
199197
EXPECT_THAT(arr, ElementsAre(0, 1, 23, 23, 1));
200198
}
201-
202-
} // namespace arrow_util_span_test

0 commit comments

Comments
 (0)