summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-20 17:31:07 -0400
committerLioncash <mathew1800@gmail.com>2018-08-20 19:48:57 -0400
commitdfdf4a46fed709426ffa51fd041cd3014d86cf8d (patch)
treec21e9e137481440d0afc4d20319c2dd2c44af48b /src
parent69dd37d874094a2ad632e5dbafaa16553703af73 (diff)
profile_manager: Remove unnecessary static
This can just be constexpr like the others
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/acc/profile_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/profile_manager.h b/src/core/hle/service/acc/profile_manager.h
index 054dd864e..d4a2f4116 100644
--- a/src/core/hle/service/acc/profile_manager.h
+++ b/src/core/hle/service/acc/profile_manager.h
@@ -14,7 +14,7 @@
namespace Service::Account {
constexpr size_t MAX_USERS = 8;
constexpr size_t MAX_DATA = 128;
-static const u128 INVALID_UUID = {0, 0};
+constexpr u128 INVALID_UUID{{0, 0}};
struct UUID {
// UUIDs which are 0 are considered invalid!