diff options
author | Daniel Jasper <djasper@google.com> | 2015-04-07 15:04:40 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-04-07 15:04:40 +0000 |
commit | 53395406dae24921b7d5ad68be7436e23b1a659b (patch) | |
tree | 25bb96ad2ab1a0102adbf4096f5c66daf9984e91 /clang/unittests/Format/FormatTest.cpp | |
parent | e4651eb0331d5d4daf1c9a4c05b449b8670b276a (diff) | |
download | bcm5719-llvm-53395406dae24921b7d5ad68be7436e23b1a659b.tar.gz bcm5719-llvm-53395406dae24921b7d5ad68be7436e23b1a659b.zip |
clang-format: Fix regression formatting QT's "signals:" from r234318.
llvm-svn: 234320
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 16062dd40b7..d96c8b0303c 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -1897,6 +1897,8 @@ TEST_F(FormatTest, UnderstandsAccessSpecifiers) { " void f() {}\n" "public Q_SLOTS:\n" " void f() {}\n" + "signals:\n" + " void g();\n" "};"); } |