diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-24 12:24:18 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-24 12:24:18 +0200 |
commit | ce7006e3c063fc1383c23d2e0e36917b31d04e3f (patch) | |
tree | 08c0240655c50eb17c1e9f82e66d019d2bc9afc0 /src/deep.cpp | |
parent | bbb4f99918d00308b52af3289c29624bfeb0066b (diff) | |
download | lanes-ce7006e3c063fc1383c23d2e0e36917b31d04e3f.tar.gz lanes-ce7006e3c063fc1383c23d2e0e36917b31d04e3f.tar.bz2 lanes-ce7006e3c063fc1383c23d2e0e36917b31d04e3f.zip |
C++ migration: split UniqueKey into UniqueKey+RegistryUniqueKey
Diffstat (limited to 'src/deep.cpp')
-rw-r--r-- | src/deep.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deep.cpp b/src/deep.cpp index 3326f98..3e1d90a 100644 --- a/src/deep.cpp +++ b/src/deep.cpp | |||
@@ -54,13 +54,13 @@ THE SOFTWARE. | |||
54 | * factory -> metatable | 54 | * factory -> metatable |
55 | */ | 55 | */ |
56 | // crc64/we of string "DEEP_LOOKUP_KEY" generated at http://www.nitrxgen.net/hashgen/ | 56 | // crc64/we of string "DEEP_LOOKUP_KEY" generated at http://www.nitrxgen.net/hashgen/ |
57 | static constexpr UniqueKey DEEP_LOOKUP_KEY{ 0x9fb9b4f3f633d83dull }; | 57 | static constexpr RegistryUniqueKey DEEP_LOOKUP_KEY{ 0x9FB9B4F3F633D83Dull }; |
58 | 58 | ||
59 | /* | 59 | /* |
60 | * The deep proxy cache is a weak valued table listing all deep UD proxies indexed by the deep UD that they are proxying | 60 | * The deep proxy cache is a weak valued table listing all deep UD proxies indexed by the deep UD that they are proxying |
61 | * crc64/we of string "DEEP_PROXY_CACHE_KEY" generated at http://www.nitrxgen.net/hashgen/ | 61 | * crc64/we of string "DEEP_PROXY_CACHE_KEY" generated at http://www.nitrxgen.net/hashgen/ |
62 | */ | 62 | */ |
63 | static constexpr UniqueKey DEEP_PROXY_CACHE_KEY{ 0x05773d6fc26be106ull }; | 63 | static constexpr RegistryUniqueKey DEEP_PROXY_CACHE_KEY{ 0x05773D6FC26BE106ull }; |
64 | 64 | ||
65 | /* | 65 | /* |
66 | * Sets up [-1]<->[-2] two-way lookups, and ensures the lookup table exists. | 66 | * Sets up [-1]<->[-2] two-way lookups, and ensures the lookup table exists. |