[cfe-commits] r171274 - /cfe/trunk/include/clang/Sema/Sema.h
Nico Weber
nicolasweber at gmx.de
Sun Dec 30 18:59:14 PST 2012
Author: nico
Date: Sun Dec 30 20:59:14 2012
New Revision: 171274
URL: http://llvm.org/viewvc/llvm-project?rev=171274&view=rev
Log:
Fix minor copy-pasto. No functionality change.
Modified:
cfe/trunk/include/clang/Sema/Sema.h
Modified: cfe/trunk/include/clang/Sema/Sema.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/Sema.h?rev=171274&r1=171273&r2=171274&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/Sema.h (original)
+++ cfe/trunk/include/clang/Sema/Sema.h Sun Dec 30 20:59:14 2012
@@ -2660,7 +2660,7 @@
SourceLocation StarLoc,
Expr *DestExp);
StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);
- StmtResult ActOnBreakStmt(SourceLocation GotoLoc, Scope *CurScope);
+ StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);
const VarDecl *getCopyElisionCandidate(QualType ReturnType, Expr *E,
bool AllowFunctionParameters);
More information about the cfe-commits
mailing list