Skip to content

Commit

Permalink
Bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
shwina committed Feb 8, 2025
1 parent 14bdf3c commit 070f5a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cub/cub/thread/thread_store.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ ThreadStore(T* ptr, T val, detail::constant_t<MODIFIER> /*modifier*/, ::cuda::st
template <CacheStoreModifier MODIFIER, typename OutputIteratorT, typename T>
_CCCL_DEVICE _CCCL_FORCEINLINE void ThreadStore(OutputIteratorT itr, T val)
{
ThreadStore(itr, val, Int2Type<MODIFIER>(), Int2Type<::cuda::std::is_pointer<OutputIteratorT>::value>());
ThreadStore(
itr, val, detail::constant_v<MODIFIER>, detail::bool_constant_v<::cuda::std::is_pointer_v<OutputIteratorT>>);
}

#endif // _CCCL_DOXYGEN_INVOKED
Expand Down

0 comments on commit 070f5a1

Please sign in to comment.