aboutsummaryrefslogtreecommitdiff
path: root/bigint.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-08 11:58:01 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-08 11:58:32 +0200
commit9064811c32218ee1a4adbdb3431d747836bd9bdf (patch)
treed746455636b509e1d40b0de6ded5385f663b774d /bigint.h
parentf49e2058ad2c6d7eedded27fa41bd30405db5aaa (diff)
Bigint parsing: also hex, and add string constructor
Diffstat (limited to 'bigint.h')
-rw-r--r--bigint.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/bigint.h b/bigint.h
index bd15fd9..4d6c980 100644
--- a/bigint.h
+++ b/bigint.h
@@ -32,6 +32,7 @@ public:
Bigint();
Bigint(const Bigint&)=default;
Bigint(Bigint&&)=default;
+ explicit Bigint(const std::string&);
explicit Bigint(sdigit_t);
explicit Bigint(digit_t);
explicit Bigint(slongdigit_t);