diff options
author | Daniel Jasper <djasper@google.com> | 2013-02-28 13:40:17 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-02-28 13:40:17 +0000 |
commit | 9c3c7b3130bc72b3f50703c11b85152b1264fc90 (patch) | |
tree | 9310f235d2667a3bd772f99480d006775b254333 /unittests/Format/FormatTest.cpp | |
parent | ff9a01000ff74a994aa3da26ea2ec732c97291b7 (diff) |
No spaces around pointers to members.
Before: (a ->* f)()
After: (a->*f)()
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Format/FormatTest.cpp')
-rw-r--r-- | unittests/Format/FormatTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 98e035a598..02c749337e 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1713,6 +1713,7 @@ TEST_F(FormatTest, UnderstandsTemplateParameters) { TEST_F(FormatTest, UnderstandsBinaryOperators) { verifyFormat("COMPARE(a, ==, b);"); + verifyFormat("(a->*f)()"); } TEST_F(FormatTest, UnderstandsUnaryOperators) { |