aboutsummaryrefslogtreecommitdiff
path: root/Math
diff options
context:
space:
mode:
authorAnthony Wang2022-03-05 21:17:28 -0600
committerAnthony Wang2022-03-05 21:17:28 -0600
commitb4feee9a2bebec9a5ced081f9b4dada8e34c218c (patch)
tree2630655f76b5ec6447fd3a3001fcb2d15019f620 /Math
parente8300f4a2777424c0c0bb3c4fadb203e3700e4fc (diff)
Use const instead of constexprHEADmaster
Diffstat (limited to 'Math')
-rw-r--r--Math/numtheory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp
index 282e39f..2472c47 100644
--- a/Math/numtheory.cpp
+++ b/Math/numtheory.cpp
@@ -1,4 +1,4 @@
-constexpr ll MOD = 1e9+7;
+const ll MOD = 1e9+7;
inline ll pw(ll base, ll exp) {
ll res = 1;