From: Ted Kremenek Date: Thu, 23 Jul 2009 01:06:10 +0000 (+0000) Subject: Add instance predicate method to match static method. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4e70568ae8902d48aad215c16b0fc8b40308106;p=clang Add instance predicate method to match static method. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76832 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 9d967dec03..bbd1b1ba1c 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -738,6 +738,7 @@ public: bool isIncrementDecrementOp() const { return Opc>=PostInc && Opc<=PreDec; } bool isOffsetOfOp() const { return Opc == OffsetOf; } static bool isArithmeticOp(Opcode Op) { return Op >= Plus && Op <= LNot; } + bool isArithmeticOp() const { return isArithmeticOp(Opc); } /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it /// corresponds to, e.g. "sizeof" or "[pre]++"