diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-11-19 05:48:40 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-11-19 05:48:40 +0000 |
commit | 3c8c46efd7dea518102c028c11d6ac93c47a4128 (patch) | |
tree | a216d057814df9d0e5613411fa8daa4e5afe0e7b /clang/lib/Sema/SemaExprCXX.cpp | |
parent | 77c1ae83643735326af7f7f0b62212c1b7eba20d (diff) | |
download | bcm5719-llvm-3c8c46efd7dea518102c028c11d6ac93c47a4128.tar.gz bcm5719-llvm-3c8c46efd7dea518102c028c11d6ac93c47a4128.zip |
clang-format a recent commit I made
llvm-svn: 222317
Diffstat (limited to 'clang/lib/Sema/SemaExprCXX.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExprCXX.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaExprCXX.cpp b/clang/lib/Sema/SemaExprCXX.cpp index c0866432e66..4733b0b54b9 100644 --- a/clang/lib/Sema/SemaExprCXX.cpp +++ b/clang/lib/Sema/SemaExprCXX.cpp @@ -587,12 +587,12 @@ Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) { // When certain criteria are met, an implementation is allowed to omit the // copy/move construction of a class object [...] // - // - in a throw-expression, when the operand is the name of a + // - in a throw-expression, when the operand is the name of a // non-volatile automatic object (other than a function or catch- // clause parameter) whose scope does not extend beyond the end of the - // innermost enclosing try-block (if there is one), the copy/move - // operation from the operand to the exception object (15.1) can be - // omitted by constructing the automatic object directly into the + // innermost enclosing try-block (if there is one), the copy/move + // operation from the operand to the exception object (15.1) can be + // omitted by constructing the automatic object directly into the // exception object if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens())) if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) { |