summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2010-03-07 04:47:12 +0000
committerTanya Lattner <tonic@nondot.org>2010-03-07 04:47:12 +0000
commit1dcd061f7209f227d785043bd4a75e427d851abe (patch)
tree010b1cb512c3022709ff7454924cee6c3619f90b
parent18f36d9eac8b425e8cfed389bbbf02c030f26be7 (diff)
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97898 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Sema/SemaInit.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp
index a746cb7f50..98db60854f 100644
--- a/lib/Sema/SemaInit.cpp
+++ b/lib/Sema/SemaInit.cpp
@@ -509,7 +509,8 @@ void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
"{")
<< CodeModificationHint::CreateInsertion(
SemaRef.PP.getLocForEndOfToken(
- StructuredSubobjectInitList->getLocEnd()), "}");
+ StructuredSubobjectInitList->getLocEnd()),
+ "}");
}
}