]> granicus.if.org Git - clang/commit
Formatter: No spaces around '=' in @property lines.
authorNico Weber <nicolasweber@gmx.de>
Thu, 10 Jan 2013 21:30:42 +0000 (21:30 +0000)
committerNico Weber <nicolasweber@gmx.de>
Thu, 10 Jan 2013 21:30:42 +0000 (21:30 +0000)
commit7084823f8ec4367019940b26245e01684b62c7e1
tree77181246daae0f425cc9b16e953dee250816c587
parentb1fc673783dd0215a1426b2c411779cd05a16a07
Formatter: No spaces around '=' in @property lines.

Before:
@property(assign, getter = isEditable) BOOL editable;

Now:
@property(assign, getter=isEditable) BOOL editable;

It'd be nice if some Apple person could let me know if spaces are preferred
around '=' in @synthesize lines (see FIXME in the test).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172110 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp