From a4e70568ae8902d48aad215c16b0fc8b40308106 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 23 Jul 2009 01:06:10 +0000 Subject: [PATCH] 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 --- include/clang/AST/Expr.h | 1 + 1 file changed, 1 insertion(+) 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]++" -- 2.50.1