[clang-format] Followup of D30646 - unbreak the build

llvm-svn: 297148
This commit is contained in:
Andi-Bogdan Postelnicu 2017-03-07 15:20:31 +00:00
parent 2dc1f547ae
commit 4743e2d9b9
1 changed files with 2 additions and 2 deletions

View File

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