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)
commit304a986a7295483c0d9a7938a16107f1c3602666
tree0936670908618db5477c1939c9dc70d1fe02c084
parentb7abb30d77b79b929b6e52d58ca8dc89688a3f2b
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..

llvm-svn: 173100
clang/lib/Format/Format.cpp
clang/unittests/Format/FormatTest.cpp