diff options
-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()); } |