[cfe-commits] r45993 - /cfe/trunk/include/clang/AST/Type.h

Steve Naroff snaroff at apple.com
Mon Jan 14 18:05:08 PST 2008


Author: snaroff
Date: Mon Jan 14 20:05:07 2008
New Revision: 45993

URL: http://llvm.org/viewvc/llvm-project?rev=45993&view=rev
Log:

Add a comment...


Modified:
    cfe/trunk/include/clang/AST/Type.h

Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=45993&r1=45992&r2=45993&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Mon Jan 14 20:05:07 2008
@@ -265,6 +265,9 @@
   
   /// Helper methods to distinguish type categories. All type predicates
   /// operate on the canonical type, ignoring typedefs.
+  
+  /// isIntegerType() does *not* include complex integers (a GCC extension).
+  /// isComplexIntegerType() can be used to test for complex integers.
   bool isIntegerType() const;     // C99 6.2.5p17 (int, char, bool, enum)
   bool isEnumeralType() const;
   bool isBooleanType() const;





More information about the cfe-commits mailing list