diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-20 16:23:54 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-20 16:23:54 +0100 |
commit | 6556cc558f0602cc99b1a8d1c7212b2e91490cdc (patch) | |
tree | 1763ed796df57a39432f045eccb8d80b2ec02a93 /src/universe.cpp | |
parent | 0b516e9490b51bdd15c347fcda35b5dbb06b4829 (diff) | |
download | lanes-6556cc558f0602cc99b1a8d1c7212b2e91490cdc.tar.gz lanes-6556cc558f0602cc99b1a8d1c7212b2e91490cdc.tar.bz2 lanes-6556cc558f0602cc99b1a8d1c7212b2e91490cdc.zip |
C++ migration: UniqueKey
Diffstat (limited to 'src/universe.cpp')
-rw-r--r-- | src/universe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/universe.cpp b/src/universe.cpp index d5cc9e2..a31189c 100644 --- a/src/universe.cpp +++ b/src/universe.cpp | |||
@@ -37,7 +37,7 @@ THE SOFTWARE. | |||
37 | #include "uniquekey.h" | 37 | #include "uniquekey.h" |
38 | 38 | ||
39 | // crc64/we of string "UNIVERSE_REGKEY" generated at http://www.nitrxgen.net/hashgen/ | 39 | // crc64/we of string "UNIVERSE_REGKEY" generated at http://www.nitrxgen.net/hashgen/ |
40 | static DECLARE_CONST_UNIQUE_KEY( UNIVERSE_REGKEY, 0x9f877b2cf078f17f); | 40 | static constexpr UniqueKey UNIVERSE_REGKEY{ 0x9f877b2cf078f17full }; |
41 | 41 | ||
42 | // ################################################################################################ | 42 | // ################################################################################################ |
43 | 43 | ||