Skip to content

Commit

Permalink
Remove anonymous namespace from null_mask.cuh (#8786)
Browse files Browse the repository at this point in the history
Removed a non-compliant anonymous namespace from `null_mask.cuh`.  The contents has been left in the `cudf::detail` namespace.

Resolves #8781

Authors:
  - https://github.com/nvdbaranec

Approvers:
  - Karthikeyan (https://github.com/karthikeyann)
  - MithunR (https://github.com/mythrocks)

URL: #8786
  • Loading branch information
nvdbaranec authored Jul 20, 2021
1 parent a770589 commit 544cda2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cpp/include/cudf/detail/null_mask.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,6 @@ void inplace_bitmask_binop(
stream.synchronize();
}

namespace {

/**
* For each range `[first_bit_indices[i], last_bit_indices[i])`
* (where 0 <= i < `num_ranges`), count the number of bits set outside the range
Expand Down Expand Up @@ -248,8 +246,6 @@ struct word_num_set_bits_functor {
bitmask_type const* bitmask;
};

} // anonymous namespace

/**
* @brief Given a bitmask, counts the number of set (1) bits in every range
* `[indices_begin[2*i], indices_begin[(2*i)+1])` (where 0 <= i < std::distance(indices_begin,
Expand Down

0 comments on commit 544cda2

Please sign in to comment.