Skip to content

Commit 6faeb3c

Browse files
committed
fixup tidy
1 parent 50784ec commit 6faeb3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/intx/intx.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -280,14 +280,14 @@ inline constexpr uint128& operator--(uint128& x) noexcept
280280
return x = x - 1;
281281
}
282282

283-
inline constexpr uint128 operator++(uint128& x, int) noexcept
283+
inline constexpr const uint128 operator++(uint128& x, int) noexcept // NOLINT(*-const-return-type)
284284
{
285285
const auto ret = x;
286286
++x;
287287
return ret;
288288
}
289289

290-
inline constexpr uint128 operator--(uint128& x, int) noexcept
290+
inline constexpr const uint128 operator--(uint128& x, int) noexcept // NOLINT(*-const-return-type)
291291
{
292292
const auto ret = x;
293293
--x;

0 commit comments

Comments
 (0)