clang-format: Indent relative to unary operators.
authorDaniel Jasper <djasper@google.com>
Wed, 21 Aug 2013 08:39:01 +0000 (08:39 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 21 Aug 2013 08:39:01 +0000 (08:39 +0000)
commitf110e201e42742318199576d7009d5bc6a22f990
tree22b3055891d2da897c0d230a0f6fb9d99f855af8
parent179264794242e3fe322ef287e2687c980b2609c5
clang-format: Indent relative to unary operators.

Before:
  if (!aaaaaaaaaa(  // break
          aaaaa)) {
  }

After:
  if (!aaaaaaaaaa(  // break
           aaaaa)) {
  }

Also cleaned up formatting using clang-format.

llvm-svn: 188891
clang/lib/Format/ContinuationIndenter.cpp
clang/lib/Format/Format.cpp
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp