summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-07-20 19:44:48 +0200
committerGitHub <noreply@github.com>2021-07-20 19:44:48 +0200
commit8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb (patch)
tree82c6645ae73a667245b7f2444b46fd3197b55b3c
parentvk_buffer_cache: Fix quad index array with 0 vertices (#6627) (diff)
parentuuid: Directly compare UUID instead of checking per element (diff)
downloadyuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar.gz
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar.bz2
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar.lz
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar.xz
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.tar.zst
yuzu-8616c0f8f3a9bd828128d0f0664dac8d5c5dd3eb.zip
-rw-r--r--src/common/uuid.h5
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 {