From 53454cec9e5fb600b754037c21bf700c1a65a6d2 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 9 Apr 2024 17:26:27 +0200 Subject: Minor fixes --- src/uniquekey.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 public: - constexpr UniqueKey(uint64_t val_) + constexpr explicit UniqueKey(uint64_t val_) #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 : m_storage{ static_cast(val_ & 0x7fffffffffffull) } #else // LUAJIT_FLAVOR() -- cgit v1.2.3-55-g6feb