aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-05-06 10:24:51 +0000
committerDaniel Jasper <djasper@google.com>2013-05-06 10:24:51 +0000
commit7ff96ed7336b4f0efef05c10fd5ce5143918d4e1 (patch)
treedbfca9761d618490f0a65553d46128f87ccb100d /lib
parent53e72cdcc0bc217cab33fa56858a0fe5b94ca453 (diff)
Don't break comments after includes.
LLVM/Clang basically don't use such comments and for Google-style, include-lines are explicitly exempt from the column limit. Also, for most cases, where the column limit is violated, the "better" solution would be to move the comment to before the include, which clang-format cannot do (yet). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Format/Format.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp
index d251d4f9e6..68626d29ca 100644
--- a/lib/Format/Format.cpp
+++ b/lib/Format/Format.cpp
@@ -643,7 +643,9 @@ private:
if (!DryRun)
BBC->alignLines(Whitespaces);
Token.reset(BBC);
- } else if (Current.Type == TT_LineComment) {
+ } else if (Current.Type == TT_LineComment &&
+ (Current.Parent == NULL ||
+ Current.Parent->Type != TT_ImplicitStringLiteral)) {
Token.reset(new BreakableLineComment(SourceMgr, Current, StartColumn));
} else {
return 0;