aboutsummaryrefslogtreecommitdiff
path: root/src/stable/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/array.h')
-rw-r--r--src/stable/array.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stable/array.h b/src/stable/array.h
index ca66213..6069832 100644
--- a/src/stable/array.h
+++ b/src/stable/array.h
@@ -10,7 +10,7 @@
10 10
11#include <memory> 11#include <memory>
12#include "bu/exceptionbase.h" 12#include "bu/exceptionbase.h"
13#include "bu/archivebase.h" 13#include "bu/archive.h"
14#include "bu/sharedcore.h" 14#include "bu/sharedcore.h"
15 15
16namespace Bu 16namespace Bu
@@ -761,7 +761,7 @@ namespace Bu
761 } 761 }
762 762
763 template<typename value, int inc, typename valuealloc> 763 template<typename value, int inc, typename valuealloc>
764 ArchiveBase &operator<<( ArchiveBase &ar, 764 Archive &operator<<( Archive &ar,
765 const Array<value, inc, valuealloc> &h ) 765 const Array<value, inc, valuealloc> &h )
766 { 766 {
767 ar << h.getSize(); 767 ar << h.getSize();
@@ -775,7 +775,7 @@ namespace Bu
775 } 775 }
776 776
777 template<typename value, int inc, typename valuealloc> 777 template<typename value, int inc, typename valuealloc>
778 ArchiveBase &operator>>(ArchiveBase &ar, Array<value, inc, valuealloc> &h ) 778 Archive &operator>>(Archive &ar, Array<value, inc, valuealloc> &h )
779 { 779 {
780 h.clear(); 780 h.clear();
781 long nSize; 781 long nSize;