From 7026b96ec807b169f7b413056e52412ae422ea9d Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 30 Oct 2014 13:15:19 -0600 Subject: The new division works great! Other minor bug fixes including scale issues, digit() access stopped a digit before the final possible digit in the scale, >, >=, <, <= all work correctly with mixed scale numbers now, probably other fixes. --- src/number.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/number.h') diff --git a/src/number.h b/src/number.h index 40dbd55..fe10788 100644 --- a/src/number.h +++ b/src/number.h @@ -47,6 +47,7 @@ public: int digit( int iIdx ) const; int getScale() const { return iScale; } + int getEffectiveScale() const; void setScale( int iNewScale ); int32_t toInt32() const; -- cgit v1.2.3