summaryrefslogtreecommitdiff
path: root/ledger.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2003-09-29 07:19:54 +0000
committerJohn Wiegley <johnw@newartisans.com>2003-09-29 07:19:54 +0000
commit3667f06594a99dd6f0080747732e7eff639343b1 (patch)
tree246eb9daa91831e19ff43844325f7e38797cde7b /ledger.cc
parentfaaed980ea63fcac773859680a68a82e96c7fdc8 (diff)
downloadfork-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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ledger.cc b/ledger.cc
index 64a2381a..88a9d0b7 100644
--- a/ledger.cc
+++ b/ledger.cc
@@ -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)