MyDeveloperDay added a comment.

FormatsBracedListsInColumnLayout is actually failing in its own test... it now 
produces

  void foo() {
    { // asdf
      { int a; }
    }
    {
      { int b; }
    }
  }

rather than previously

  void foo() {
    {// asdf
     {int a;
  }
  }
  {
    { int b; }
  }
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D114583/new/

https://reviews.llvm.org/D114583

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to