From a78c788171d45057406b571846e55541eef49688 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sat, 18 Nov 2017 13:54:29 +0100 Subject: Made use of 32bits integer instead of 64bits This will allow multiplication to hold the result of the multiplication of two 32 bits integer in a 64 bits integer. Signed-off-by: Olivier Gayot --- number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'number.h') diff --git a/number.h b/number.h index 8489453..97817ac 100644 --- a/number.h +++ b/number.h @@ -76,7 +76,7 @@ public: private: /* First item is the least significant. */ - std::list _operands; + std::list _operands; }; std::ostream &operator<<(std::ostream &, const number &); -- cgit v1.2.3