]> granicus.if.org Git - clang/commit
More tests and a fix for braced init lists.
authorDaniel Jasper <djasper@google.com>
Thu, 23 May 2013 21:35:49 +0000 (21:35 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 23 May 2013 21:35:49 +0000 (21:35 +0000)
commitce93356e2719d2992763ea747b65beada99f4c9b
tree58867eae474784954c0aa943b5703662d6393d85
parent0d2223f52daff1a8c5eb49a2e267108b4f23ed98
More tests and a fix for braced init lists.

Before: f(new vector<int> { 1, 2, 3 });
After:  f(new vector<int>{ 1, 2, 3 });

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