]> granicus.if.org Git - clang/commit
Improvement of change r186320.
authorDaniel Jasper <djasper@google.com>
Mon, 15 Jul 2013 14:33:14 +0000 (14:33 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 15 Jul 2013 14:33:14 +0000 (14:33 +0000)
commit9637dda705e39110bfff66742542a58dd2470ad2
tree9d346f5ee120c712789737ef78c6a209837d4e6e
parent3e12e87f98538c55c1eab79df79e5a00df6de8ec
Improvement of change r186320.

Fixed a test that by now passed for the wrong reason.

Before:
  llvm::outs() << "aaaaaaaaaaaaaaaaaaa: " << aaaaaaaaaaaaa(
                                                 aaaaaaaaaaaaaaaaaaaaaaaaaaaa);
After:
  llvm::outs() << "aaaaaaaaaaaaaaaaaaa: "
               << aaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaaaaa);

Also reformatted Format.cpp with the latest changes (1 formatting fix
and 1 layout change of a <<-chain).

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