]> granicus.if.org Git - clang/commit
clang-format: Force aligning different brackets relative to each other.
authorDaniel Jasper <djasper@google.com>
Mon, 4 May 2015 07:39:00 +0000 (07:39 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 4 May 2015 07:39:00 +0000 (07:39 +0000)
commitc95b0129763897bfd3d9f28f81396c4d17b0086e
treeb772d47fc36b2c212119206301a55a971526e089
parentee62f0be45dba1319522c6a268c5b9d7d7301b80
clang-format: Force aligning different brackets relative to each other.

Before:
  void SomeFunction(vector< // break
      int> v);

After:
  void SomeFunction(vector< // break
                        int> v);

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