aboutsummaryrefslogtreecommitdiff
path: root/bigint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bigint.cpp')
-rw-r--r--bigint.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/bigint.cpp b/bigint.cpp
index 644ffb3..21c4ab2 100644
--- a/bigint.cpp
+++ b/bigint.cpp
@@ -7,9 +7,10 @@
using namespace std;
+Bigint Bigint::mone(-1);
Bigint Bigint::zero(0);
Bigint Bigint::one(1);
-Bigint Bigint::mone(-1);
+Bigint Bigint::two(2);
Bigint::Bigint()
:sign(1){}