diff options
| author | Mike Buland <mbuland@penny-arcade.com> | 2023-04-24 10:37:48 -0700 | 
|---|---|---|
| committer | Mike Buland <mbuland@penny-arcade.com> | 2023-04-24 10:37:48 -0700 | 
| commit | 944e2b6a9d8ee97c3202ac0403edec234d0bfa31 (patch) | |
| tree | 28a8383f475f2e2fb8f22de609671cb379603cf3 /src/unstable/blob.cpp | |
| parent | af849fa314ad335e14c82a2018ee7d7bea91842a (diff) | |
| download | libbu++-944e2b6a9d8ee97c3202ac0403edec234d0bfa31.tar.gz libbu++-944e2b6a9d8ee97c3202ac0403edec234d0bfa31.tar.bz2 libbu++-944e2b6a9d8ee97c3202ac0403edec234d0bfa31.tar.xz libbu++-944e2b6a9d8ee97c3202ac0403edec234d0bfa31.zip | |
More tweaks to make things easier to transition.
Diffstat (limited to 'src/unstable/blob.cpp')
| -rw-r--r-- | src/unstable/blob.cpp | 4 | 
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 | ||
| 814 | Bu::ArchiveBase &operator<<( Bu::ArchiveBase &ar, const Bu::Blob &b ) | 814 | Bu::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 | ||
| 822 | Bu::ArchiveBase &operator>>( Bu::ArchiveBase &ar, Bu::Blob &b ) | 822 | Bu::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; | 
