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 +++-- src/process.h | 1 + 2 files changed, 4 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 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; diff --git a/src/process.h b/src/process.h index 843ead1..db4a4cf 100644 --- a/src/process.h +++ b/src/process.h @@ -26,6 +26,7 @@ namespace Bu public: enum Flags { + None = 0x00, StdOut = 0x01, StdErr = 0x02, Both = 0x03 -- cgit v1.2.3