[PATCH] D45004: [clang-format] New style option IndentWrappedObjCMethodNames

Stephane Moore via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Mar 28 16:16:43 PDT 2018


stephanemoore added inline comments.


================
Comment at: include/clang/Format/Format.h:1154-1163
+  /// \brief The style of indenting long function or method names wrapped
+  /// onto the next line.
+  enum IndentWrappedMethodStyle {
+    /// Automatically determine indenting style.
+    IWM_Auto,
+    /// Always indent wrapped method names.
+    IWM_Always,
----------------
Do we explicitly want these to be generic with the intent to later reuse the enum for C++ method wrapping style?


Repository:
  rC Clang

https://reviews.llvm.org/D45004





More information about the cfe-commits mailing list