Fix bug in the adjustment to existing lines.
authorDaniel Jasper <djasper@google.com>
Tue, 12 Feb 2013 16:51:23 +0000 (16:51 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 12 Feb 2013 16:51:23 +0000 (16:51 +0000)
commit2204562acdc8eb94c2a2b7088e2fc0dc7a0f70e3
tree51d2be968005bdcfe1cd22010e85f969becbc162
parent5e76aa971418b5aa6736ebcdf1644c74687f126b
Fix bug in the adjustment to existing lines.

Before (if only the second line was reformatted):
void f() {}
          void g() {}

After:
void f() {}
void g() {}

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