]> granicus.if.org Git - clang/commit
clang-format: Improve line breaks in @property.
authorDaniel Jasper <djasper@google.com>
Thu, 1 Aug 2013 13:46:58 +0000 (13:46 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 1 Aug 2013 13:46:58 +0000 (13:46 +0000)
commitaa9e7b18a88d715b63e7b65d1b26a1759decc177
treea66558c0989168c964b1309a4c2a0fa1b96c1b76
parent3b142da09284334a5fec95ed467ff6313a504b0d
clang-format: Improve line breaks in @property.

Before:
  @property(nonatomic, assign,
            readonly) NSString *looooooooooooooooooooooooooooongName;

After:
  @property(nonatomic, assign, readonly)
      NSString *looooooooooooooooooooooooooooongName;

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