]> granicus.if.org Git - clang/commit
Correct spacing around new and delete.
authorDaniel Jasper <djasper@google.com>
Fri, 11 Jan 2013 16:09:04 +0000 (16:09 +0000)
committerDaniel Jasper <djasper@google.com>
Fri, 11 Jan 2013 16:09:04 +0000 (16:09 +0000)
commit088dab50b76d235cd5b0e701048efccfcea3677e
tree83c7ce83c92fe63b27d07d728ff5aec433e1d3c2
parent276a209451b8724807f2741f49c90bf27fc280c7
Correct spacing around new and delete.

This fixes llvm.org/PR14913.

Before:  A *a = new(placement) A;
After:   A *a = new (placement) A;

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