diff options
Diffstat (limited to 'src/unstable/uuid.cpp')
-rw-r--r-- | src/unstable/uuid.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/unstable/uuid.cpp b/src/unstable/uuid.cpp index 0257270..aef8bc0 100644 --- a/src/unstable/uuid.cpp +++ b/src/unstable/uuid.cpp | |||
@@ -139,6 +139,11 @@ bool Bu::Uuid::operator==( const Uuid &rhs ) const | |||
139 | return memcmp( data, rhs.data, 16 ) == 0; | 139 | return memcmp( data, rhs.data, 16 ) == 0; |
140 | } | 140 | } |
141 | 141 | ||
142 | bool Bu::Uuid::operator!=( const Uuid &rhs ) const | ||
143 | { | ||
144 | return !(*this == rhs); | ||
145 | } | ||
146 | |||
142 | Bu::Uuid &Bu::Uuid::operator=( const Uuid &rhs ) | 147 | Bu::Uuid &Bu::Uuid::operator=( const Uuid &rhs ) |
143 | { | 148 | { |
144 | memcpy( data, rhs.data, 16 ); | 149 | memcpy( data, rhs.data, 16 ); |