summaryrefslogtreecommitdiff
path: root/math/bigint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/bigint.cpp')
-rw-r--r--math/bigint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/bigint.cpp b/math/bigint.cpp
index df28a73..6f83a93 100644
--- a/math/bigint.cpp
+++ b/math/bigint.cpp
@@ -1,5 +1,5 @@
// base and base_digits must be consistent
-constexpr ll base = 1000000;
+constexpr ll base = 1'000'000;
constexpr ll base_digits = 6;
struct bigint {
vll a; ll sign;