Skip to content

Commit 0d501cd

Browse files
committed
Fix lint
1 parent 7c9ea2f commit 0d501cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/arrow/stl_allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class allocator {
6060
/// \brief Construct an allocator from the default MemoryPool
6161
allocator() noexcept : pool_(default_memory_pool()) {}
6262
/// \brief Construct an allocator from the given MemoryPool
63-
allocator(MemoryPool* pool) noexcept : pool_(pool) {}
63+
allocator(MemoryPool* pool) noexcept : pool_(pool) {} // NOLINT: runtime/explicit
6464

6565
template <class U>
6666
allocator(const allocator<U>& rhs) noexcept : pool_(rhs.pool()) {}

0 commit comments

Comments
 (0)