]> granicus.if.org Git - clang/commit
Don't put spaces around ##.
authorDaniel Jasper <djasper@google.com>
Tue, 8 Jan 2013 16:17:54 +0000 (16:17 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 8 Jan 2013 16:17:54 +0000 (16:17 +0000)
commit765561ff8fa636cc88d133b85ecb592094104554
tree6aa314182e7cc20cbc5ba7967614beb6969068c1
parenta879a164495db6daa4d809fbaba1617c9ade5919
Don't put spaces around ##.

In Clang/LLVM this seems to be the more common formatting for ##s. There
might still be case that we miss, but we'll fix those as we go along.

Before:

  #define A(X)
    void function ## X();

After:

  #define A(X)
    void function##X();

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