diff options
author | Andi-Bogdan Postelnicu <andi@mozilla.com> | 2017-03-07 15:20:31 +0000 |
---|---|---|
committer | Andi-Bogdan Postelnicu <andi@mozilla.com> | 2017-03-07 15:20:31 +0000 |
commit | 4743e2d9b94be8a43b6e940bae25245cc49a51a4 (patch) | |
tree | fbc4b40c9046279e9422dd1e3bf35590f4664ec3 | |
parent | 2dc1f547ae07b39cf150ae46f76747221b23efc5 (diff) | |
download | bcm5719-llvm-4743e2d9b94be8a43b6e940bae25245cc49a51a4.tar.gz bcm5719-llvm-4743e2d9b94be8a43b6e940bae25245cc49a51a4.zip |
[clang-format] Followup of D30646 - unbreak the build
llvm-svn: 297148
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 54c5f27978f..b785d18d523 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -5326,8 +5326,8 @@ TEST_F(FormatTest, BreaksLongDeclarations) { " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa>>\n" " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);"); - verifyFormat("template<typename T> // Templates on own line.\n" - "static int // Some comment.\n" + verifyFormat("template <typename T> // Templates on own line.\n" + "static int // Some comment.\n" "MyFunction(int a);", getLLVMStyle()); } |