From f03026f5c2cde1eecfda273eaa52df10287f0f9e Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 29 Jan 2015 08:49:55 -0700 Subject: Fixed nasty subtraction bug when dealing with fractions. It turned out to be a really simple solution, but man, that was embarassing. I forgot to include the fractional portion of a number when fixing my radix+1 compliment numbers. --- src/unitnumber.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/unitnumber.h') diff --git a/src/unitnumber.h b/src/unitnumber.h index 96d882e..097fd5b 100644 --- a/src/unitnumber.h +++ b/src/unitnumber.h @@ -14,6 +14,7 @@ public: void multiply1(); void divide1(); void number1(); + void number2(); void compare1(); void radix1(); void fraction1(); -- cgit v1.2.3