flow improvements
This commit is contained in:
+2
-1
@@ -54,7 +54,8 @@ inline bool operator==(const AccountUid& x, u64 y)
|
||||
|
||||
inline bool operator<(const AccountUid& x, const AccountUid& y)
|
||||
{
|
||||
return x.uid[0] < y.uid[0] && x.uid[1] == y.uid[1];
|
||||
if (x.uid[0] != y.uid[0]) return x.uid[0] < y.uid[0];
|
||||
return x.uid[1] < y.uid[1];
|
||||
}
|
||||
|
||||
struct User {
|
||||
|
||||
Reference in New Issue
Block a user