diff options
author | Daniel Jasper <djasper@google.com> | 2013-02-06 22:04:05 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-02-06 22:04:05 +0000 |
commit | 474e46211a141e4566c399b80ae26e3580b70c90 (patch) | |
tree | 8aaa3be083dd0ad190233c435583a569fe552035 /lib | |
parent | 4e8a7b4a95962f63a938c0d21c9aca0a51b78345 (diff) |
Fix bug in the alignment of comments.
Before:
const char *test[] = {
// A
"aaaa",
// B
"aaaaa",
};
After:
const char *test[] = {
// A
"aaaa",
// B
"aaaaa",
};
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174549 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Format/Format.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index 4128785f63..7f78ac0bcf 100644 --- a/lib/Format/Format.cpp +++ b/lib/Format/Format.cpp @@ -111,7 +111,10 @@ public: Comments.back().Tok = Tok.FormatTok; Comments.back().Spaces = Spaces; Comments.back().NewLines = NewLines; - Comments.back().MinColumn = WhitespaceStartColumn + Spaces; + if (NewLines == 0) + Comments.back().MinColumn = WhitespaceStartColumn + Spaces; + else + Comments.back().MinColumn = Spaces; Comments.back().MaxColumn = Style.ColumnLimit - Spaces - Tok.FormatTok.TokenLength; return; |