mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
profile_manager: Remove unnecessary static
This can just be constexpr like the others
This commit is contained in:
parent
69dd37d874
commit
dfdf4a46fe
1 changed files with 1 additions and 1 deletions
|
@ -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!
|
||||
|
|
Loading…
Reference in a new issue