aboutsummaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-01-05 15:42:03 +0000
committerMike Buland <eichlan@xagasoft.com>2010-01-05 15:42:03 +0000
commit845da7977140eef97189f913f9b664dd12eebe42 (patch)
treed1b8414f11d5c8a1643b09b415bea2fce4dbdfc5 /src/hash.h
parentd6986e5d77917cbfd1b5fab86d79c6abbd9b4aac (diff)
downloadlibbu++-845da7977140eef97189f913f9b664dd12eebe42.tar.gz
libbu++-845da7977140eef97189f913f9b664dd12eebe42.tar.bz2
libbu++-845da7977140eef97189f913f9b664dd12eebe42.tar.xz
libbu++-845da7977140eef97189f913f9b664dd12eebe42.zip
Really minor tweaks, shouldn't effect anything that we have right now, really.
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h5
1 files changed, 3 insertions, 2 deletions
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
1193 ArchiveBase &operator<<( ArchiveBase &ar, const Hash<key,value,a,b,c,d> &h ) 1193 ArchiveBase &operator<<( ArchiveBase &ar, const Hash<key,value,a,b,c,d> &h )
1194 { 1194 {
1195 ar << h.getSize(); 1195 ar << h.getSize();
1196 for( typename Hash<key,value>::const_iterator i = h.begin(); i != h.end(); i++ ) 1196 for( typename Hash<key,value,a,b,c,d>::const_iterator i = h.begin(); i != h.end(); i++ )
1197 { 1197 {
1198 ar << (i.getKey()) << (i.getValue()); 1198 ar << (i.getKey());
1199 ar << (i.getValue());
1199 } 1200 }
1200 1201
1201 return ar; 1202 return ar;