Skip to content

Commit 5964c94

Browse files
authored
[clangd] Fix test case due to clang-format bug fix (#88352)
See commit 51f1681.
1 parent bd32aaa commit 5964c94

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

clang-tools-extra/clangd/unittests/HoverTests.cpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1983,10 +1983,14 @@ TEST(Hover, All) {
19831983
HI.Kind = index::SymbolKind::Macro;
19841984
HI.Definition =
19851985
R"cpp(#define MACRO \
1986-
{ return 0; }
1986+
{ \
1987+
return 0; \
1988+
}
19871989
19881990
// Expands to
1989-
{ return 0; })cpp";
1991+
{
1992+
return 0;
1993+
})cpp";
19901994
}},
19911995
{
19921996
R"cpp(// Forward class declaration

0 commit comments

Comments
 (0)