Commit de984b5a authored by Shiva Shankar P's avatar Shiva Shankar P Committed by Facebook Github Bot

Fix for build error when using -Werror=parentheses

Summary: as in title

Differential Revision: D15005737

fbshipit-source-id: 6ac0ff3d7498e505f0437dd5be76735d66eb953e
parent 3ceffd7d
......@@ -1411,7 +1411,7 @@ class alignas(64) SIMDTable {
tag_idx = hits.next();
Node* node = chunk->item(tag_idx).load(std::memory_order_relaxed);
if (LIKELY(node && KeyEqual()(k, node->getItem().first))) {
chunk_idx = (chunk_idx & ccount - 1);
chunk_idx = (chunk_idx & (ccount - 1));
return node;
}
}
......
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