Skip to content

Commit 4729dd6

Browse files
committed
modint<>: Add an line break at the end
It would be easy to copy.
1 parent 311c866 commit 4729dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cpalgo/util/modint.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ class modint {
6262
constexpr bool operator==(modint const& rhs) const noexcept { return x == rhs.value(); }
6363
constexpr bool operator!=(modint const& rhs) const noexcept { return !(*this == rhs); }
6464
friend constexpr std::ostream& operator<<(std::ostream& os, const modint& x) noexcept { return os << x.value(); }
65-
};
65+
};

0 commit comments

Comments
 (0)