[PATCH] D45526: [clang-format] Do not break after ObjC category open paren
Ben Hamilton via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 12 08:04:53 PDT 2018
benhamilton added inline comments.
================
Comment at: lib/Format/TokenAnnotator.cpp:2276
+ // In Objective-C type declarations, prefer breaking after the category's
+ // close paren instead of after the open paren.
+ if (Line.Type == LT_ObjCDecl && Left.is(tok::l_paren) && Left.Previous &&
----------------
djasper wrote:
> This is still using the old wording.
Fixed, thanks.
Repository:
rC Clang
https://reviews.llvm.org/D45526
More information about the cfe-commits
mailing list