aboutsummaryrefslogtreecommitdiff
path: root/src/stable/hash.h
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2022-04-20 11:14:47 -0700
committerMike Buland <mbuland@penny-arcade.com>2022-04-20 11:14:47 -0700
commitd10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3 (patch)
tree0235e978cc5ffa94d790a4e26b5cf1e5492cab2b /src/stable/hash.h
parent819ff3d27012b4ec4a0a21c150c112a4dd28b14d (diff)
downloadlibbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.gz
libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.bz2
libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.xz
libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.zip
ArchiveBase/Archive renamed. More to come.
Diffstat (limited to 'src/stable/hash.h')
-rw-r--r--src/stable/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stable/hash.h b/src/stable/hash.h
index 0c5bd9e..e515088 100644
--- a/src/stable/hash.h
+++ b/src/stable/hash.h
@@ -12,7 +12,7 @@
12#include "bu/exceptionbase.h" 12#include "bu/exceptionbase.h"
13#include "bu/list.h" 13#include "bu/list.h"
14#include "bu/util.h" 14#include "bu/util.h"
15#include "bu/archivebase.h" 15#include "bu/archive.h"
16#include "bu/sharedcore.h" 16#include "bu/sharedcore.h"
17 17
18namespace Bu 18namespace Bu
@@ -1319,7 +1319,7 @@ namespace Bu
1319 1319
1320 template<typename key, typename value, typename a, typename b, 1320 template<typename key, typename value, typename a, typename b,
1321 typename c, typename d> 1321 typename c, typename d>
1322 ArchiveBase &operator<<( ArchiveBase &ar, const Hash<key,value,a,b,c,d> &h ) 1322 Archive &operator<<( Archive &ar, const Hash<key,value,a,b,c,d> &h )
1323 { 1323 {
1324 long iSize = h.getSize(); 1324 long iSize = h.getSize();
1325 ar << iSize; 1325 ar << iSize;
@@ -1334,7 +1334,7 @@ namespace Bu
1334 1334
1335 template<typename key, typename value, typename a, typename b, 1335 template<typename key, typename value, typename a, typename b,
1336 typename c, typename d> 1336 typename c, typename d>
1337 ArchiveBase &operator>>( ArchiveBase &ar, Hash<key,value,a,b,c,d> &h ) 1337 Archive &operator>>( Archive &ar, Hash<key,value,a,b,c,d> &h )
1338 { 1338 {
1339 h.clear(); 1339 h.clear();
1340 long nSize; 1340 long nSize;