]> granicus.if.org Git - clang/commit
Remove "incorrect" aligning of trailing comments.
authorDaniel Jasper <djasper@google.com>
Mon, 21 Jan 2013 22:49:20 +0000 (22:49 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 21 Jan 2013 22:49:20 +0000 (22:49 +0000)
commit821627e5865c29357aef0e4f175b0abd083bf191
tree76688f04da52bb84480fec6e1e0f3d7fce6fdded
parented01f84d20a1586b2d639b47463cf1f22418f0f6
Remove "incorrect" aligning of trailing comments.

We used to align trailing comments belong to different things.
Before:
void f() { // some function..
}
int a;     // some variable..

After:
void f() { // some function..
}
int a; // some variable..

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173100 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp