Skip to content

Commit

Permalink
[clangd] Fix test case due to clang-format bug fix (#88352)
Browse files Browse the repository at this point in the history
See commit 51f1681.
  • Loading branch information
owenca committed Apr 11, 2024
1 parent bd32aaa commit 5964c94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions clang-tools-extra/clangd/unittests/HoverTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1983,10 +1983,14 @@ TEST(Hover, All) {
HI.Kind = index::SymbolKind::Macro;
HI.Definition =
R"cpp(#define MACRO \
{ return 0; }
{ \
return 0; \
}
// Expands to
{ return 0; })cpp";
{
return 0;
})cpp";
}},
{
R"cpp(// Forward class declaration
Expand Down

0 comments on commit 5964c94

Please sign in to comment.