]> granicus.if.org Git - clang/commitdiff
Doug Gregor pointed out that _Complex actually isn't C++ at all.
authorChris Lattner <sabre@nondot.org>
Mon, 16 Jul 2007 04:22:42 +0000 (04:22 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 16 Jul 2007 04:22:42 +0000 (04:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39898 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/TokenKinds.def

index 1310a0e01c746c2868dbb255da89ee7a452e77fc..699b17b1947eb7a3b33090219476b3329ad3680d 100644 (file)
@@ -221,7 +221,7 @@ KEYWORD(void                        , 0)
 KEYWORD(volatile                    , 0)
 KEYWORD(while                       , 0)
 KEYWORD(_Bool                       , EXTC90|EXTCPP|EXTCPP0x)  // C99 only
-KEYWORD(_Complex                    , EXTC90)         // C99/C++
+KEYWORD(_Complex                    , EXTC90|EXTCPP|EXTCPP0x)  // C99 only
 KEYWORD(_Imaginary                  , EXTC90|NOTCPP|NOTCPP0x)  // C90 only
 
 // Special tokens to the compiler.