diff options
author | Stefanus Du Toit <stefanus.du.toit@intel.com> | 2013-04-02 20:18:18 +0000 |
---|---|---|
committer | Stefanus Du Toit <stefanus.du.toit@intel.com> | 2013-04-02 20:18:18 +0000 |
commit | 58b65d953e67251bfce28a5251bb3b496490f343 (patch) | |
tree | da4fa65caf6c1ca2c0fa2b88ad286a39348e68ee | |
parent | 148bab27d31ff1ab2de52ee10e5e8cb3a52730e3 (diff) |
Update assertion string to new name of ArithAssignBinaryOperator
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178572 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 377d00e161..36d70d8b0b 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -2900,7 +2900,7 @@ public: SubExprs[LHS] = lhs; SubExprs[RHS] = rhs; assert(!isCompoundAssignmentOp() && - "Use ArithAssignBinaryOperator for compound assignments"); + "Use CompoundAssignOperator for compound assignments"); } /// \brief Construct an empty binary operator. |