diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-27 00:10:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-27 00:10:53 +0000 |
commit | 16f6c03d67a1fbcce8a85eb3849fcf8234f99344 (patch) | |
tree | 0731108c1e54de1991858c6813bbc4e57622abb7 /include/clang/Basic/IdentifierTable.h | |
parent | 831c6313dfa36f297094cd593a9dd3cb60649362 (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.h | 2 |
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__)); } }; |