File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ namespace Aws
23
23
24
24
UUID &operator =(const String &str) noexcept ;
25
25
26
- bool operator ==(const UUID &other) noexcept ;
27
- bool operator !=(const UUID &other) noexcept ;
26
+ bool operator ==(const UUID &other) const noexcept ;
27
+ bool operator !=(const UUID &other) const noexcept ;
28
28
operator String () const ;
29
29
operator ByteBuf () const noexcept ;
30
30
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ namespace Aws
31
31
return *this ;
32
32
}
33
33
34
- bool UUID::operator ==(const UUID &other) noexcept
34
+ bool UUID::operator ==(const UUID &other) const noexcept
35
35
{
36
36
return aws_uuid_equals (&m_uuid, &other.m_uuid );
37
37
}
38
38
39
- bool UUID::operator !=(const UUID &other) noexcept
39
+ bool UUID::operator !=(const UUID &other) const noexcept
40
40
{
41
41
return !aws_uuid_equals (&m_uuid, &other.m_uuid );
42
42
}
@@ -66,4 +66,4 @@ namespace Aws
66
66
return aws_last_error ();
67
67
}
68
68
} // namespace Crt
69
- } // namespace Aws
69
+ } // namespace Aws
You can’t perform that action at this time.
0 commit comments