diff options
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/value.h b/src/value.h index 7b058065..049d3d01 100644 --- a/src/value.h +++ b/src/value.h @@ -408,14 +408,14 @@ public: value_t rounded() const; value_t unrounded() const; - value_t reduce() const { + value_t reduced() const { value_t temp(*this); temp.in_place_reduce(); return temp; } void in_place_reduce(); // exists for efficiency's sake - value_t unreduce() const { + value_t unreduced() const { value_t temp(*this); temp.in_place_unreduce(); return temp; |