aboutsummaryrefslogtreecommitdiff
path: root/src/stable/list.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/list.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/list.h')
-rw-r--r--src/stable/list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stable/list.h b/src/stable/list.h
index c1a5559..5ef7ce0 100644
--- a/src/stable/list.h
+++ b/src/stable/list.h
@@ -11,7 +11,7 @@
11#include <memory> 11#include <memory>
12#include "bu/exceptionbase.h" 12#include "bu/exceptionbase.h"
13#include "bu/sharedcore.h" 13#include "bu/sharedcore.h"
14#include "bu/archivebase.h" 14#include "bu/archive.h"
15#include "bu/heap.h" 15#include "bu/heap.h"
16 16
17namespace Bu 17namespace Bu
@@ -1042,7 +1042,7 @@ namespace Bu
1042 } 1042 }
1043 1043
1044 template<typename value, typename a, typename b> 1044 template<typename value, typename a, typename b>
1045 ArchiveBase &operator<<( ArchiveBase &ar, const List<value,a,b> &h ) 1045 Archive &operator<<( Archive &ar, const List<value,a,b> &h )
1046 { 1046 {
1047 ar << h.getSize(); 1047 ar << h.getSize();
1048 for( typename List<value>::const_iterator i = h.begin(); i != h.end(); i++ ) 1048 for( typename List<value>::const_iterator i = h.begin(); i != h.end(); i++ )
@@ -1054,7 +1054,7 @@ namespace Bu
1054 } 1054 }
1055 1055
1056 template<typename value, typename a, typename b> 1056 template<typename value, typename a, typename b>
1057 ArchiveBase &operator>>( ArchiveBase &ar, List<value,a,b> &h ) 1057 Archive &operator>>( Archive &ar, List<value,a,b> &h )
1058 { 1058 {
1059 h.clear(); 1059 h.clear();
1060 long nSize; 1060 long nSize;