]> granicus.if.org Git - clang/commit
Fix formatting of pointers to members.
authorDaniel Jasper <djasper@google.com>
Wed, 8 May 2013 14:58:20 +0000 (14:58 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 8 May 2013 14:58:20 +0000 (14:58 +0000)
commit395228fdc343df39c2507e414dc1406a185c6d37
treed3073b8f14e502f93bdb5d5a44ac7a4bce44fc68
parenta5188963724cc242c724712ea598f1a1531f902c
Fix formatting of pointers to members.

Before: int(S::*func)(void *);
After:  int (S::*func)(void *);

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