From: Steve Naroff Date: Tue, 15 Jan 2008 02:05:07 +0000 (+0000) Subject: Add a comment... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96d2c438f5c9ada8229f7f2ac049d2e9957bc954;p=clang Add a comment... git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45993 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 13a000a87c..9c143e9998 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -265,6 +265,9 @@ public: /// 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;