clang-format: Fix formatting bug with comment in weird place.
authorDaniel Jasper <djasper@google.com>
Fri, 27 Sep 2013 07:49:08 +0000 (07:49 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 27 Sep 2013 07:49:08 +0000 (07:49 +0000)
commit69bd8fb79a44f9173f98ae478735f58d7bb940f4
tree1e4a858f8ae873f75d3776c90123f21ac1b36093
parent74e38de492c929b897002b393d07a329d9b1623d
clang-format: Fix formatting bug with comment in weird place.

Before:
  template <typename T>
  // T should be one of {A, B}.
      void f() {}

After:
  template <typename T>
  // T should be one of {A, B}.
  void f() {}

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