aboutsummaryrefslogtreecommitdiff
path: root/src/stable/array.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/array.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/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;