clang-format: Understand single-line comments at the end of blocks.
authorDaniel Jasper <djasper@google.com>
Wed, 7 Jan 2015 14:00:11 +0000 (14:00 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 7 Jan 2015 14:00:11 +0000 (14:00 +0000)
commit495321047851f182d7d97e62e07bb63932fe2185
tree0dad028af055e6c29a03ff868f8c198d120f7103
parentfcf0cba88cf6b466264f1644536e9491920ae295
clang-format: Understand single-line comments at the end of blocks.

This prevents clang-format from moving/aligning the comment in the
snippet:
  void f() {
    int i; // some comment
    // some unrelated comment
  }

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