We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3847cbc commit 124715bCopy full SHA for 124715b
atcoder/modint.hpp
@@ -47,7 +47,6 @@ struct static_modint : internal::static_modint_base {
47
static_modint(T v) {
48
_v = (unsigned int)(v % umod());
49
}
50
- static_modint(bool v) { _v = ((unsigned int)(v) % umod()); }
51
52
unsigned int val() const { return _v; }
53
@@ -165,7 +164,6 @@ template <int id> struct dynamic_modint : internal::modint_base {
165
164
dynamic_modint(T v) {
166
_v = (unsigned int)(v % mod());
167
168
- dynamic_modint(bool v) { _v = ((unsigned int)(v) % mod()); }
169
170
171
0 commit comments