]> granicus.if.org Git - clang/commit
clang-format: [Proto] Change formatting text-formatted options.
authorDaniel Jasper <djasper@google.com>
Mon, 27 Oct 2014 13:25:59 +0000 (13:25 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 27 Oct 2014 13:25:59 +0000 (13:25 +0000)
commit48f2aaaa4941ee1d1706de32236810370b39f9cf
tree5cbcb083826405f31b6899bcb5c77c187bbe7c96
parentc6660a2c033490fd8f2dddf9c07cf95b0e627d42
clang-format: [Proto] Change formatting text-formatted options.

Before:
  optional Type type = 1 [(mutate_options) = {vital : true
                                              abc : false}];

After:
  optional Type type = 1 [(mutate_options) = {
    vital : true
    abc : false
  }];

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