aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/blob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/unstable/blob.cpp')
-rw-r--r--src/unstable/blob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unstable/blob.cpp b/src/unstable/blob.cpp
index c4148e1..213a1ec 100644
--- a/src/unstable/blob.cpp
+++ b/src/unstable/blob.cpp
@@ -811,7 +811,7 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Blob &b )
811 return rOut; 811 return rOut;
812} 812}
813 813
814Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b ) 814Bu::ArchiveBase &Bu::operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b )
815{ 815{
816 int32_t iSize = b.getSize(); 816 int32_t iSize = b.getSize();
817 ar << iSize; 817 ar << iSize;
@@ -819,7 +819,7 @@ Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b )
819 return ar; 819 return ar;
820} 820}
821 821
822Bu::ArchiveBase &operator>>( Bu::ArchiveBase &ar, Bu::Blob &b ) 822Bu::ArchiveBase &Bu::operator>>( Bu::ArchiveBase &ar, Bu::Blob &b )
823{ 823{
824 int32_t iSize; 824 int32_t iSize;
825 ar >> iSize; 825 ar >> iSize;