diff options
Diffstat (limited to 'bigint.h')
-rw-r--r-- | bigint.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -93,7 +93,9 @@ public: bool odd() const; std::string serialiseMantissa() const; //stores everything but the sign - void deserialiseMantissa(const std::string&); //restores non-negative number + + //restores non-negative number; can throw invalid_argument + void deserialiseMantissa(const std::string&); std::vector<bool> bits() const; friend std::istream& operator>>(std::istream&,Bigint&); |