[clang] Partially revert "Disable a few formatting options for test/"
authorBruno Ricci <riccibrun@gmail.com>
Tue, 21 Jul 2020 13:43:48 +0000 (14:43 +0100)
committerBruno Ricci <riccibrun@gmail.com>
Tue, 21 Jul 2020 13:53:37 +0000 (14:53 +0100)
commit7b5bddfd034ef42c92c67731743399df844d5f43
tree209dd72a57937ee23517d65303dd2a9426aa9a40
parent617787ea77a22f752ba1fcd4ac7cb9a62a710756
[clang] Partially revert "Disable a few formatting options for test/"

The changes to "AlignTrailingComments" and "CommentPragmas" did not
result in what I expected (just leave the special comments alone).

Instead now the following:
  void test() {
    int i; // expected-error
           // expected-warning
  }

is formatted into:
  void test() {
    int i; // expected-error
    // expected-warning
  }

which is even worse.
clang/test/.clang-format