[clang] eeb7c49 - [AST] Fixed string list in test
Dávid Bolvanský via cfe-commits
cfe-commits at lists.llvm.org
Sun Aug 9 14:18:07 PDT 2020
Author: Dávid Bolvanský
Date: 2020-08-09T23:17:48+02:00
New Revision: eeb7c496e385d2a88c39a0e0ebfe8a9908762cc3
URL: https://github.com/llvm/llvm-project/commit/eeb7c496e385d2a88c39a0e0ebfe8a9908762cc3
DIFF: https://github.com/llvm/llvm-project/commit/eeb7c496e385d2a88c39a0e0ebfe8a9908762cc3.diff
LOG: [AST] Fixed string list in test
Added:
Modified:
clang/unittests/AST/CommentParser.cpp
Removed:
################################################################################
diff --git a/clang/unittests/AST/CommentParser.cpp b/clang/unittests/AST/CommentParser.cpp
index 0be01a554f72..62c461a00d16 100644
--- a/clang/unittests/AST/CommentParser.cpp
+++ b/clang/unittests/AST/CommentParser.cpp
@@ -792,8 +792,8 @@ TEST_F(CommentParserTest, ParamCommand2) {
TEST_F(CommentParserTest, ParamCommand3) {
const char *Sources[] = {
- ("// \\param aaa Bbb\n",
- "// \\param\n"
+ "// \\param aaa Bbb\n",
+ ("// \\param\n"
"// aaa Bbb\n"),
("// \\param \n"
"// aaa Bbb\n"),
More information about the cfe-commits
mailing list