From 845da7977140eef97189f913f9b664dd12eebe42 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 5 Jan 2010 15:42:03 +0000 Subject: Really minor tweaks, shouldn't effect anything that we have right now, really. --- src/hash.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/hash.h') diff --git a/src/hash.h b/src/hash.h index 09025ba..9af285e 100644 --- a/src/hash.h +++ b/src/hash.h @@ -1193,9 +1193,10 @@ namespace Bu ArchiveBase &operator<<( ArchiveBase &ar, const Hash &h ) { ar << h.getSize(); - for( typename Hash::const_iterator i = h.begin(); i != h.end(); i++ ) + for( typename Hash::const_iterator i = h.begin(); i != h.end(); i++ ) { - ar << (i.getKey()) << (i.getValue()); + ar << (i.getKey()); + ar << (i.getValue()); } return ar; -- cgit v1.2.3