aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Math/numtheory.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp
index a019b05..b211282 100644
--- a/Math/numtheory.cpp
+++ b/Math/numtheory.cpp
@@ -8,7 +8,6 @@ inline ll pw(ll base, ll exp) {
}
return res;
}
-
inline ll inv(ll x) { return pw(x, MOD-2); }
ll fact[MX] = { 1 }, ifact[MX] = { 1 };