diff options
author | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-07-21 02:36:57 +1000 |
---|---|---|
committer | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-07-21 02:36:57 +1000 |
commit | 75e9d3b992e0655482f10bff90eae6e1fba8bd28 (patch) | |
tree | 82c6645ae73a667245b7f2444b46fd3197b55b3c /src/common/uuid.h | |
parent | 9a26d96c9827e753a5700bc7d37437944e074815 (diff) |
uuid: Directly compare UUID instead of checking per element
We can now update this for C++20
Diffstat (limited to 'src/common/uuid.h')
-rw-r--r-- | src/common/uuid.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/uuid.h b/src/common/uuid.h index 2e7a18405..0ffa37e7c 100644 --- a/src/common/uuid.h +++ b/src/common/uuid.h @@ -20,12 +20,11 @@ struct UUID { constexpr explicit UUID(const u64 lo, const u64 hi) : uuid{{lo, hi}} {} [[nodiscard]] constexpr explicit operator bool() const { - return uuid[0] != INVALID_UUID[0] && uuid[1] != INVALID_UUID[1]; + return uuid != INVALID_UUID; } [[nodiscard]] constexpr bool operator==(const UUID& rhs) const { - // TODO(DarkLordZach): Replace with uuid == rhs.uuid with C++20 - return uuid[0] == rhs.uuid[0] && uuid[1] == rhs.uuid[1]; + return uuid == rhs.uuid; } [[nodiscard]] constexpr bool operator!=(const UUID& rhs) const { |