diff options
author | John Wiegley <johnw@newartisans.com> | 2003-09-29 07:19:54 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-09-29 07:19:54 +0000 |
commit | 3667f06594a99dd6f0080747732e7eff639343b1 (patch) | |
tree | 246eb9daa91831e19ff43844325f7e38797cde7b /ledger.cc | |
parent | faaed980ea63fcac773859680a68a82e96c7fdc8 (diff) | |
download | fork-ledger-3667f06594a99dd6f0080747732e7eff639343b1.tar.gz fork-ledger-3667f06594a99dd6f0080747732e7eff639343b1.tar.bz2 fork-ledger-3667f06594a99dd6f0080747732e7eff639343b1.zip |
*** empty log message ***
Diffstat (limited to 'ledger.cc')
-rw-r--r-- | ledger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ totals::operator bool() const void totals::print(std::ostream& out) const { for (const_iterator_t i = amounts.begin(); i != amounts.end(); i++) - std::cout << (*i).first << " = " << *((*i).second) << std::endl; + std::cout << (*i).first << " = " << *((*i).second); } amount * totals::value(const std::string& commodity) |