MyDeveloperDay marked 7 inline comments as done.
MyDeveloperDay added inline comments.


================
Comment at: clang/lib/Format/UnwrappedLineParser.cpp:1282-1300
     if (FormatTok->Tok.is(tok::string_literal)) {
       nextToken();
       if (FormatTok->Tok.is(tok::l_brace)) {
+        if (Style.BraceWrapping.AfterExternBlock) {
+          addUnwrappedLine();
+        }
         if (!Style.IndentExternBlock) {
----------------
owenpan wrote:
> This `case` is kind of messy and some cleanup may be in order. A related 
> question: why do we make `IEBS_AfterExternBlock` depend on 
> `BraceWrapping.AfterExternBlock`? Can't we only have true/false for 
> `IndentExternBlock` and let the user set it independent of 
> `BraceWrapping.AfterExternBlock`?
This a a backwards compatibility thing, (its needed for the google style by the 
looks of things)


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

https://reviews.llvm.org/D115879

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

Reply via email to