diff options
author | Daniel Jasper <djasper@google.com> | 2015-05-15 09:58:11 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-05-15 09:58:11 +0000 |
commit | 3ca283ada3efa777383879210f455c4f684fad7c (patch) | |
tree | 872d81b8f4716e02e802396c0a4c7221b5b53759 /clang/unittests/Format/FormatTest.cpp | |
parent | 27e2c058c91c7be588db67b73473447a1fa4a4b9 (diff) | |
download | bcm5719-llvm-3ca283ada3efa777383879210f455c4f684fad7c.tar.gz bcm5719-llvm-3ca283ada3efa777383879210f455c4f684fad7c.zip |
clang-format: Slightly change format decisions around macro annotations.
Before:
bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
GUARDED_BY(aaaaaaaaaaaa) = aaaaaaaaaaaaaaaaaaaaaaaaa;
After:
bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa GUARDED_BY(aaaaaaaaaaaa) =
aaaaaaaaaaaaaaaaaaaaaaaaa;
llvm-svn: 237430
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index ecc1a7e1342..d9dae5193b9 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -4035,6 +4035,9 @@ TEST_F(FormatTest, BreaksFunctionDeclarationsWithTrailingTokens) { verifyGoogleFormat( "bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa GUARDED_BY(aaaaaaaaaaaa) =\n" " aaaaaaaa::aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;"); + verifyGoogleFormat( + "bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa GUARDED_BY(aaaaaaaaaaaa) =\n" + " aaaaaaaaaaaaaaaaaaaaaaaaa;"); } TEST_F(FormatTest, BreaksDesireably) { |