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

Commit

Permalink
add space.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhemstad committed Oct 28, 2020
1 parent 5e8e690 commit 9433e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/chrono
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ _LIBCUDACXX_INLINE_VISIBILITY
constexpr days operator-(const weekday& __lhs, const weekday& __rhs) noexcept
{
// casts are required to work around nvcc bug 3145483
const int __wdu = static_cast<int>(__lhs.c_encoding())- static_cast<int>(__rhs.c_encoding());
const int __wdu = static_cast<int>(__lhs.c_encoding()) - static_cast<int>(__rhs.c_encoding());
const int __wk = (__wdu >= 0 ? __wdu : __wdu-6) / 7;
return days{__wdu - __wk * 7};
}
Expand Down

0 comments on commit 9433e81

Please sign in to comment.