*** no comment ***

This commit is contained in:
John Wiegley 2006-03-19 22:35:20 +00:00
parent 86a6af6974
commit 7adb262823

View file

@ -478,7 +478,7 @@ int amount_t::sign() const
bool amount_t::operator OP(const amount_t& amt) const \
{ \
if (! quantity) \
return amt OP 0; \
return 0 OP amt; \
if (! amt.quantity) \
return *this OP 0; \
\