diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-20 23:27:48 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-21 01:48:57 +0200 |
commit | 69dd37d874094a2ad632e5dbafaa16553703af73 (patch) | |
tree | 8290bb073898ea80d62459dc2cd632091fd7b4fc /src | |
parent | profile_manager: Move UUID generation function to the cpp file (diff) | |
download | yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar.gz yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar.bz2 yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar.lz yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar.xz yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.tar.zst yuzu-69dd37d874094a2ad632e5dbafaa16553703af73.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/acc/profile_manager.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/hle/service/acc/profile_manager.h b/src/core/hle/service/acc/profile_manager.h index 91f6f03a9..054dd864e 100644 --- a/src/core/hle/service/acc/profile_manager.h +++ b/src/core/hle/service/acc/profile_manager.h @@ -21,16 +21,14 @@ struct UUID { u128 uuid = INVALID_UUID; UUID() = default; explicit UUID(const u128& id) : uuid{id} {} - explicit UUID(const u64 lo, const u64 hi) { - uuid[0] = lo; - uuid[1] = hi; - }; + explicit UUID(const u64 lo, const u64 hi) : uuid{{lo, hi}} {} + explicit operator bool() const { - return uuid[0] != INVALID_UUID[0] || uuid[1] != INVALID_UUID[1]; + return uuid != INVALID_UUID; } bool operator==(const UUID& rhs) const { - return std::tie(uuid[0], uuid[1]) == std::tie(rhs.uuid[0], rhs.uuid[1]); + return uuid == rhs.uuid; } bool operator!=(const UUID& rhs) const { |