Skip to content

Commit

Permalink
Fix typo in limits (#3491)
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco authored Jan 22, 2025
1 parent b1422c0 commit 0c8e627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcudacxx/include/cuda/std/limits
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public:
#else // ^^^ _CCCL_BUILTIN_NAN ^^^ // vvv !_CCCL_BUILTIN_NAN vvv
_LIBCUDACXX_HIDE_FROM_ABI static _LIBCUDACXX_CONSTEXPR_BIT_CAST type quiet_NaN() noexcept
{
return std::bit_cast<type>(0x7ff8000000000000);
return _CUDA_VSTD::bit_cast<type>(0x7ff8000000000000);
}
#endif // !_CCCL_BUILTIN_NAN
#if defined(_CCCL_BUILTIN_NANS)
Expand Down

0 comments on commit 0c8e627

Please sign in to comment.