Skip to content

Commit 52ba075

Browse files
committed
Add missing paren
1 parent d36b483 commit 52ba075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/StringMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ int StringMapImpl::FindKey(StringRef Key, uint32_t FullHashValue) const {
148148
if (NumBuckets == 0)
149149
return -1; // Really empty table?
150150
#ifdef EXPENSIVE_CHECKS
151-
assert(FullHashValue == hash(Key);
151+
assert(FullHashValue == hash(Key));
152152
#endif
153153
if (shouldReverseIterate())
154154
FullHashValue = ~FullHashValue;

0 commit comments

Comments
 (0)