[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.
This commit is contained in:
Bruno Ricci 2020-07-21 14:43:48 +01:00
parent 617787ea77
commit 7b5bddfd03
No known key found for this signature in database
GPG Key ID: D58C906B2F684D92
1 changed files with 0 additions and 2 deletions

View File

@ -1,5 +1,3 @@
BasedOnStyle: LLVM
ColumnLimit: 0
AlignTrailingComments: false
CommentPragmas: "(^ ?CHECK|^ ?expected-)"
AlwaysBreakTemplateDeclarations: No