]> granicus.if.org Git - clang/commitdiff
Silence a GCC warning
authorDouglas Gregor <dgregor@apple.com>
Sat, 27 Aug 2011 00:10:53 +0000 (00:10 +0000)
committerDouglas Gregor <dgregor@apple.com>
Sat, 27 Aug 2011 00:10:53 +0000 (00:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138683 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/IdentifierTable.h

index 9238d3daa798aaba7855818d8eccaac3fce3139b..424a3440d4b522abe1873695f2c2826f72df7825 100644 (file)
@@ -252,7 +252,7 @@ private:
   void RecomputeNeedsHandleIdentifier() {
     NeedsHandleIdentifier =
       (isPoisoned() | hasMacroDefinition() | isCPlusPlusOperatorKeyword() |
-       isExtensionToken() | getTokenID() == tok::kw___import__);
+       isExtensionToken() | (getTokenID() == tok::kw___import__));
   }
 };