[PATCH] D91949: [clang-format] Add BeforeStructInitialization option in BraceWrapping configuration

MyDeveloperDay via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Dec 7 10:16:53 PST 2020


MyDeveloperDay added a comment.

Also how does this relate to the `AfterStruct` setting?

  bool AfterStruct Wrap struct definitions.
  
  true:
  struct foo
  {
    int x;
  };
  
  false:
  struct foo {
    int x;
  };


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

https://reviews.llvm.org/D91949



More information about the cfe-commits mailing list