[PATCH] D75791: [clang-format] Added new option IndentExternBlock
    MyDeveloperDay via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Sat May 16 10:33:49 PDT 2020
    
    
  
MyDeveloperDay accepted this revision.
MyDeveloperDay added a comment.
This revision is now accepted and ready to land.
LGTM just drop the `Noindent` it will encourage inconsistency people can read the manual  (plus you don't check it in the tests)
================
Comment at: clang/lib/Format/Format.cpp:215
+    IO.enumCase(Value, "NoIndent", FormatStyle::IEBS_NoIndent);
+    IO.enumCase(Value, "Noindent", FormatStyle::IEBS_NoIndent);
+    IO.enumCase(Value, "true", FormatStyle::IEBS_Indent);
----------------
I don't think that's necessary
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D75791/new/
https://reviews.llvm.org/D75791
    
    
More information about the cfe-commits
mailing list