aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hash.h5
-rw-r--r--src/process.h1
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
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;
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
26 public: 26 public:
27 enum Flags 27 enum Flags
28 { 28 {
29 None = 0x00,
29 StdOut = 0x01, 30 StdOut = 0x01,
30 StdErr = 0x02, 31 StdErr = 0x02,
31 Both = 0x03 32 Both = 0x03