Skip to content

Commit

Permalink
Properly use global qualification for cuda::std in cub
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco committed May 6, 2024
1 parent 335486d commit 35e77f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cub/cub/agent/agent_three_way_partition.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ struct accumulator_pack_base_t
};

template <class OffsetT>
struct accumulator_pack_base_t<OffsetT, typename cuda::std::enable_if<sizeof(OffsetT) == 4>::type>
struct accumulator_pack_base_t<OffsetT, typename ::cuda::std::enable_if<sizeof(OffsetT) == 4>::type>
{
using pack_t = std::uint64_t;

Expand Down

0 comments on commit 35e77f6

Please sign in to comment.