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

Commit

Permalink
Change a free double to ABI macro in chrono
Browse files Browse the repository at this point in the history
  • Loading branch information
wmaxey committed Jul 29, 2021
1 parent 0e57eda commit b302b19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libcxx/include/chrono
Original file line number Diff line number Diff line change
Expand Up @@ -3237,9 +3237,9 @@ inline namespace literals
}

_LIBCUDACXX_INLINE_VISIBILITY
constexpr chrono::duration<double> operator""s(long double __s)
constexpr chrono::duration<_LIBCUDACXX_CHRONO_LITERAL_INTERNAL_T> operator""s(long double __s)
{
return chrono::duration<double> (__s);
return chrono::duration<_LIBCUDACXX_CHRONO_LITERAL_INTERNAL_T> (__s);
}

_LIBCUDACXX_INLINE_VISIBILITY
Expand Down

0 comments on commit b302b19

Please sign in to comment.