clang-format: Fix alignment of comments inside statements.
authorDaniel Jasper <djasper@google.com>
Tue, 11 Feb 2014 10:08:11 +0000 (10:08 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 11 Feb 2014 10:08:11 +0000 (10:08 +0000)
commita0407740c39dd139fed453439a3c570180aae9e7
treea080a36d1d45f9b8c9c2a644fbf14c188f7c6664
parent405bdeddd18318d3b10edd474f6f08caa5e3a1d4
clang-format: Fix alignment of comments inside statements.

Before:
  auto result = SomeObject
                // Calling someFunction on SomeObject
                    .someFunction();

After:
  auto result = SomeObject
                    // Calling someFunction on SomeObject
                    .someFunction();

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