diff options
-rw-r--r-- | amount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -450,7 +450,7 @@ int amount_t::sign() const bool amount_t::operator OP(const amount_t& amt) const \ { \ if (! quantity) \ - return ! (amt OP 0); \ + return amt OP 0; \ if (! amt.quantity) \ return *this OP 0; \ \ |