Skip to content

Commit

Permalink
Felipe PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 15, 2024
1 parent a838fd0 commit 8cd7d96
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
16 changes: 8 additions & 8 deletions cpp/src/arrow/chunk_resolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ class ARROW_EXPORT ChunkResolver {
};

// Explicitly instantiate template base struct, for DLL linking on Windows
template struct arrow::TypedChunkLocation<int32_t>;
template struct arrow::TypedChunkLocation<int16_t>;
template struct arrow::TypedChunkLocation<int8_t>;
template struct arrow::TypedChunkLocation<uint8_t>;
template struct arrow::TypedChunkLocation<uint16_t>;
template struct arrow::TypedChunkLocation<uint32_t>;
template struct arrow::TypedChunkLocation<int64_t>;
template struct arrow::TypedChunkLocation<uint64_t>;
template struct TypedChunkLocation<int32_t>;
template struct TypedChunkLocation<int16_t>;
template struct TypedChunkLocation<int8_t>;
template struct TypedChunkLocation<uint8_t>;
template struct TypedChunkLocation<uint16_t>;
template struct TypedChunkLocation<uint32_t>;
template struct TypedChunkLocation<int64_t>;
template struct TypedChunkLocation<uint64_t>;
} // namespace arrow
3 changes: 0 additions & 3 deletions cpp/src/arrow/chunk_resolver_benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@

namespace arrow {

using arrow::ChunkResolver;
using arrow::TypedChunkLocation;

namespace {

int64_t constexpr kChunkedArrayLength = std::numeric_limits<uint16_t>::max();
Expand Down
4 changes: 0 additions & 4 deletions cpp/src/arrow/chunked_array_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@

namespace arrow {

using arrow::ChunkLocation;
using arrow::ChunkResolver;
using arrow::TypedChunkLocation;

class TestChunkedArray : public ::testing::Test {
protected:
virtual void Construct() {
Expand Down
1 change: 0 additions & 1 deletion cpp/src/arrow/compute/kernels/vector_sort.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

namespace arrow {

using arrow::ChunkLocation;
using internal::checked_cast;

namespace compute {
Expand Down

0 comments on commit 8cd7d96

Please sign in to comment.