diff options
Diffstat (limited to 'content/math/bigint.cpp')
| -rw-r--r-- | content/math/bigint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/math/bigint.cpp b/content/math/bigint.cpp index 1b3b953..4dad2be 100644 --- a/content/math/bigint.cpp +++ b/content/math/bigint.cpp @@ -7,9 +7,9 @@ struct bigint { bigint() : sign(1) {} - bigint(ll v) {*this = v;} + bigint(ll v) { *this = v; } - bigint(const string &s) {read(s);} + bigint(const string &s) { read(s); } void operator=(ll v) { sign = 1; |
