diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-09 17:26:27 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-09 17:26:27 +0200 |
commit | 53454cec9e5fb600b754037c21bf700c1a65a6d2 (patch) | |
tree | 7faacbd2d85d03a8d8d8968617f45ae45694e34e /src | |
parent | aa9b3594e11498ca0977d87a9d0875d7fc107253 (diff) | |
download | lanes-53454cec9e5fb600b754037c21bf700c1a65a6d2.tar.gz lanes-53454cec9e5fb600b754037c21bf700c1a65a6d2.tar.bz2 lanes-53454cec9e5fb600b754037c21bf700c1a65a6d2.zip |
Minor fixes
Diffstat (limited to '')
-rw-r--r-- | src/uniquekey.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniquekey.h b/src/uniquekey.h index e592f0a..a89ecd3 100644 --- a/src/uniquekey.h +++ b/src/uniquekey.h | |||
@@ -13,7 +13,7 @@ class UniqueKey | |||
13 | 13 | ||
14 | public: | 14 | public: |
15 | 15 | ||
16 | constexpr UniqueKey(uint64_t val_) | 16 | constexpr explicit UniqueKey(uint64_t val_) |
17 | #if LUAJIT_FLAVOR() == 64 // building against LuaJIT headers for 64 bits, light userdata is restricted to 47 significant bits, because LuaJIT uses the other bits for internal optimizations | 17 | #if LUAJIT_FLAVOR() == 64 // building against LuaJIT headers for 64 bits, light userdata is restricted to 47 significant bits, because LuaJIT uses the other bits for internal optimizations |
18 | : m_storage{ static_cast<uintptr_t>(val_ & 0x7fffffffffffull) } | 18 | : m_storage{ static_cast<uintptr_t>(val_ & 0x7fffffffffffull) } |
19 | #else // LUAJIT_FLAVOR() | 19 | #else // LUAJIT_FLAVOR() |