diff options
Diffstat (limited to 'include/clang/AST/Type.h')
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 3140901b7e..59178b8d9b 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -34,6 +34,7 @@ namespace clang { class EnumDecl; class ObjcInterfaceDecl; class ObjcProtocolDecl; + class ObjcMethodDecl; class Expr; class SourceLocation; class PointerType; @@ -273,6 +274,7 @@ public: bool isEnumeralType() const; bool isBooleanType() const; bool isCharType() const; + bool isIntegralType() const; /// Floating point categories. bool isRealFloatingType() const; // C99 6.2.5p10 (float, double, long double) |