Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Use explicit form of common_type_t to work around CUDA 10.1 nvcc issue #82

Merged
merged 1 commit into from
Nov 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libcxx/include/chrono
Original file line number Diff line number Diff line change
Expand Up @@ -3096,7 +3096,7 @@ class hh_mm_ss
{
private:
static_assert(__is_duration<_Duration>::value, "template parameter of hh_mm_ss must be a std::chrono::duration");
using __CommonType = common_type_t<_Duration, chrono::seconds>;
using __CommonType = typename common_type<_Duration, chrono::seconds>::type;

_LIBCUDACXX_INLINE_VISIBILITY
static constexpr uint64_t __pow10(unsigned __exp)
Expand Down