commit | 2424eefa6936ec2dc35188e19c99e2f85428b52e | [log] [tgz] |
---|---|---|
author | Daniel Jasper <djasper@google.com> | Thu May 23 10:15:45 2013 +0000 |
committer | Daniel Jasper <djasper@google.com> | Thu May 23 10:15:45 2013 +0000 |
tree | df697481756e865e8aebe8fb41ddc4d18c2f50d0 | |
parent | a3e21792f8774aa82964d52f8804f84152f79363 [diff] |
Improve formatting of braced lists. Before: vector<int> x { 1, 2, 3 }; After: vector<int> x{ 1, 2, 3 }; Also add a style option to remove the spaces inside braced lists, so that the above becomes: std::vector<int> v{1, 2, 3}; git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182570 91177308-0d34-0410-b5e6-96231b3b80d8