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)
commitce2fdb0a0ab0d9032de5bd16d8c832fa1884b9d0
tree745691961e5f2e8939287c6a3cf68f97e47bc379
parent729be144354ac6574ed5c0a8677adf2ddde94b35
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
  }];

llvm-svn: 220679
clang/lib/Format/ContinuationIndenter.cpp
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestProto.cpp