diff --git a/cpp/include/cudf/detail/null_mask.cuh b/cpp/include/cudf/detail/null_mask.cuh index daefa2a5ffd..93f54cff588 100644 --- a/cpp/include/cudf/detail/null_mask.cuh +++ b/cpp/include/cudf/detail/null_mask.cuh @@ -23,7 +23,7 @@ #include -using cudf::detail::device_span; +using cudf::device_span; namespace cudf { namespace detail { diff --git a/cpp/src/bitmask/null_mask.cu b/cpp/src/bitmask/null_mask.cu index 4a2a7db9638..60167d77507 100644 --- a/cpp/src/bitmask/null_mask.cu +++ b/cpp/src/bitmask/null_mask.cu @@ -44,7 +44,7 @@ #include #include -using cudf::detail::device_span; +using cudf::device_span; namespace cudf { size_type state_null_count(mask_state state, size_type size) diff --git a/cpp/src/structs/structs_column_factories.cu b/cpp/src/structs/structs_column_factories.cu index 2bd71767265..330cecd1815 100644 --- a/cpp/src/structs/structs_column_factories.cu +++ b/cpp/src/structs/structs_column_factories.cu @@ -50,7 +50,7 @@ void superimpose_parent_nullmask(bitmask_type const* parent_null_mask, reinterpret_cast(current_child_mask)}; std::vector begin_bits{0, 0}; cudf::detail::inplace_bitmask_and( - detail::device_span(current_child_mask, num_bitmask_words(child.size())), + device_span(current_child_mask, num_bitmask_words(child.size())), masks, begin_bits, child.size(),