summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/ScopeInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-17 23:58:47 +0000
committerChris Lattner <sabre@nondot.org>2011-02-17 23:58:47 +0000
commite476bdce8cf3315c8ce852480503a8acc265bd54 (patch)
tree59e3474a9df87b1653af09f7afba82342d86bdb1 /include/clang/Sema/ScopeInfo.h
parentd8df5b65fc76c2f59148e1551f56a8ee26c9607b (diff)
make block bodies handle undefined labels just like functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125799 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/ScopeInfo.h')
-rw-r--r--include/clang/Sema/ScopeInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/ScopeInfo.h b/include/clang/Sema/ScopeInfo.h
index c9d38715ec..6a0d54d150 100644
--- a/include/clang/Sema/ScopeInfo.h
+++ b/include/clang/Sema/ScopeInfo.h
@@ -64,7 +64,7 @@ public:
/// \brief The list of return statements that occur within the function or
/// block, if there is any chance of applying the named return value
/// optimization.
- llvm::SmallVector<ReturnStmt *, 4> Returns;
+ llvm::SmallVector<ReturnStmt*, 4> Returns;
void setHasBranchIntoScope() {
HasBranchIntoScope = true;