[PATCH] D55170: [clang-format]: Add NonEmptyParentheses spacing option

MyDeveloperDay via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Mar 14 12:36:43 PDT 2019


MyDeveloperDay requested changes to this revision.
MyDeveloperDay added a comment.
This revision now requires changes to proceed.

Pulling this revision down to build it caused build issues with missing SBBLO_Always, could you investigate before committing?



================
Comment at: lib/Format/TokenAnnotator.cpp:2607
+        !Left.opensScope() &&
+        (Style.SpaceBeforeCpp11BracedList == FormatStyle::SBBLO_Always ||
+         (Style.SpaceBeforeCpp11BracedList == FormatStyle::SBBLO_NonEmpty &&
----------------
Where are these SBBLO defined? I cannot find them in Format.h from what I can SpaceBeforeCpp11BracedList  is a bool


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

https://reviews.llvm.org/D55170





More information about the cfe-commits mailing list