diff options
Diffstat (limited to 'src/unstable/uuid.cpp')
-rw-r--r-- | src/unstable/uuid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unstable/uuid.cpp b/src/unstable/uuid.cpp index c5ff943..6642d75 100644 --- a/src/unstable/uuid.cpp +++ b/src/unstable/uuid.cpp | |||
@@ -170,13 +170,13 @@ template<> bool Bu::__cmpHashKeys<Bu::Uuid>( const Bu::Uuid &a, const Bu::Uuid & | |||
170 | return a == b; | 170 | return a == b; |
171 | } | 171 | } |
172 | 172 | ||
173 | Bu::ArchiveBase &Bu::operator>>( Bu::ArchiveBase &ar, Bu::Uuid &u ) | 173 | Bu::Archive &Bu::operator>>( Bu::Archive &ar, Bu::Uuid &u ) |
174 | { | 174 | { |
175 | ar.read( u.data, 16 ); | 175 | ar.read( u.data, 16 ); |
176 | return ar; | 176 | return ar; |
177 | } | 177 | } |
178 | 178 | ||
179 | Bu::ArchiveBase &Bu::operator<<( Bu::ArchiveBase &ar, const Bu::Uuid &u ) | 179 | Bu::Archive &Bu::operator<<( Bu::Archive &ar, const Bu::Uuid &u ) |
180 | { | 180 | { |
181 | ar.write( u.data, 16 ); | 181 | ar.write( u.data, 16 ); |
182 | return ar; | 182 | return ar; |