diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-12-31 02:59:14 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-12-31 02:59:14 +0000 |
commit | 8c6fe1467094a8650bb0d3b19f0e001be13362f7 (patch) | |
tree | 6a8b155f0402a391e259428a15f888c2f76e4ad1 | |
parent | d32b94d4d685522d1552d3d1345ae9616d7f27ab (diff) |
Fix minor copy-pasto. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171274 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Sema/Sema.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 81093cb987..ffb6548041 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -2660,7 +2660,7 @@ public: 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); |