diff options
author | Anders Waldenborg <anders@0x63.nu> | 2015-05-19 16:54:26 +0000 |
---|---|---|
committer | Anders Waldenborg <anders@0x63.nu> | 2015-05-19 16:54:26 +0000 |
commit | b09075a24068694c8d982c6df97646c91d133876 (patch) | |
tree | 850bab788fffeea3da19467665621d900caeed62 /clang/unittests/Format/FormatTest.cpp | |
parent | 285fe84edd0be2edd766990a2e21e174d0ad0fa9 (diff) | |
download | bcm5719-llvm-b09075a24068694c8d982c6df97646c91d133876.tar.gz bcm5719-llvm-b09075a24068694c8d982c6df97646c91d133876.zip |
clang-format: Add space in function pointers with SpaceBeforeParens=Always
"void (*my_function)(void)" should become "void (*my_function) (void)" when
SpaceBeforeParens is set to 'Always'
Differential Revision: http://reviews.llvm.org/D9835
llvm-svn: 237704
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index ead063fe41d..4684d1d746b 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -8454,6 +8454,7 @@ TEST_F(FormatTest, ConfigurableSpaceBeforeParens) { verifyFormat("size_t x = alignof(MyType);", NoSpace); verifyFormat("static_assert(sizeof(char) == 1, \"Impossible!\");", NoSpace); verifyFormat("int f() throw(Deprecated);", NoSpace); + verifyFormat("typedef void (*cb)(int);", NoSpace); FormatStyle Space = getLLVMStyle(); Space.SpaceBeforeParens = FormatStyle::SBPO_Always; @@ -8498,6 +8499,7 @@ TEST_F(FormatTest, ConfigurableSpaceBeforeParens) { verifyFormat("size_t x = alignof (MyType);", Space); verifyFormat("static_assert (sizeof (char) == 1, \"Impossible!\");", Space); verifyFormat("int f () throw (Deprecated);", Space); + verifyFormat("typedef void (*cb) (int);", Space); } TEST_F(FormatTest, ConfigurableSpacesInParentheses) { |