Skip to content

Commit

Permalink
[skip-tests] Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco committed Oct 24, 2023
1 parent 3634dfb commit b43b88d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "../cstdlib"

#if defined(_CCCL_COMPILER_NVHPC) && defined(_CCCL_USE_IMPLICIT_SYSTEM_DEADER)
#pragma GCC system_header
# pragma GCC system_header
#else // ^^^ _CCCL_COMPILER_NVHPC ^^^ / vvv !_CCCL_COMPILER_NVHPC vvv
_CCCL_IMPLICIT_SYSTEM_HEADER
#endif // !_CCCL_COMPILER_NVHPC
Expand Down Expand Up @@ -118,7 +118,9 @@ struct __fn
_LIBCUDACXX_INLINE_VISIBILITY static constexpr auto
__magnitude_geq(_Iter_difference __a, _Iter_difference __b) noexcept
{
return __a == 0 ? __b == 0 : __a > 0 ? __a >= __b : __a <= __b;
return __a == 0 ? __b == 0 : //
__a > 0 ? __a >= __b
: __a <= __b;
};

public:
Expand Down

0 comments on commit b43b88d

Please sign in to comment.