From: Nick Lewycky Date: Sat, 28 Aug 2010 13:52:51 +0000 (+0000) Subject: Fix copy+paste error in comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae2777cfe7d21f73e5a4155082fe20197cec62bd;p=clang Fix copy+paste error in comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112370 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 9ec1451e76..2562456924 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -2429,7 +2429,7 @@ public: return cast(SubExprs[LHS] ? SubExprs[LHS] : SubExprs[COND]); } - // getTrueExpr - Return the subexpression representing the value of the ?: + // getFalseExpr - Return the subexpression representing the value of the ?: // expression if the condition evaluates to false. This is the same as getRHS. Expr *getFalseExpr() const { return cast(SubExprs[RHS]); }