diff options
Diffstat (limited to 'src/stable/list.h')
-rw-r--r-- | src/stable/list.h | 6 |
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 | ||
17 | namespace Bu | 17 | namespace 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; |