aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/IdentifierTable.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-08-27 00:10:53 +0000
committerDouglas Gregor <dgregor@apple.com>2011-08-27 00:10:53 +0000
commit16f6c03d67a1fbcce8a85eb3849fcf8234f99344 (patch)
tree0731108c1e54de1991858c6813bbc4e57622abb7 /include/clang/Basic/IdentifierTable.h
parent831c6313dfa36f297094cd593a9dd3cb60649362 (diff)
Silence a GCC warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138683 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/IdentifierTable.h')
-rw-r--r--include/clang/Basic/IdentifierTable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/IdentifierTable.h b/include/clang/Basic/IdentifierTable.h
index 9238d3daa7..424a3440d4 100644
--- a/include/clang/Basic/IdentifierTable.h
+++ b/include/clang/Basic/IdentifierTable.h
@@ -252,7 +252,7 @@ private:
void RecomputeNeedsHandleIdentifier() {
NeedsHandleIdentifier =
(isPoisoned() | hasMacroDefinition() | isCPlusPlusOperatorKeyword() |
- isExtensionToken() | getTokenID() == tok::kw___import__);
+ isExtensionToken() | (getTokenID() == tok::kw___import__));
}
};