Commit cd370275 by Maarten L. Hekkelman

Fix for 32-bit architectures

parent 7ed0f4c8
...@@ -77,7 +77,7 @@ struct SymopData ...@@ -77,7 +77,7 @@ struct SymopData
friend struct SymopDataBlock; friend struct SymopDataBlock;
const uint64_t kPackMask = (~0UL >> (64-36)); const uint64_t kPackMask = (~0ULL >> (64-36));
SymopData(uint64_t v) SymopData(uint64_t v)
: m_packed(v bitand kPackMask) {} : m_packed(v bitand kPackMask) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment