[cfe-commits] r112370 - /cfe/trunk/include/clang/AST/Expr.h

Nick Lewycky nicholas at mxc.ca
Sat Aug 28 06:52:51 PDT 2010


Author: nicholas
Date: Sat Aug 28 08:52:51 2010
New Revision: 112370

URL: http://llvm.org/viewvc/llvm-project?rev=112370&view=rev
Log:
Fix copy+paste error in comment.

Modified:
    cfe/trunk/include/clang/AST/Expr.h

Modified: cfe/trunk/include/clang/AST/Expr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Expr.h?rev=112370&r1=112369&r2=112370&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Expr.h (original)
+++ cfe/trunk/include/clang/AST/Expr.h Sat Aug 28 08:52:51 2010
@@ -2429,7 +2429,7 @@
     return cast<Expr>(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<Expr>(SubExprs[RHS]); }
 





More information about the cfe-commits mailing list