From 96d2c438f5c9ada8229f7f2ac049d2e9957bc954 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 15 Jan 2008 02:05:07 +0000 Subject: [PATCH] Add a comment... git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45993 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Type.h | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.50.1