We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd32aaa commit 5964c94Copy full SHA for 5964c94
clang-tools-extra/clangd/unittests/HoverTests.cpp
@@ -1983,10 +1983,14 @@ TEST(Hover, All) {
1983
HI.Kind = index::SymbolKind::Macro;
1984
HI.Definition =
1985
R"cpp(#define MACRO \
1986
- { return 0; }
+ { \
1987
+ return 0; \
1988
+ }
1989
1990
// Expands to
-{ return 0; })cpp";
1991
+{
1992
+ return 0;
1993
+})cpp";
1994
}},
1995
{
1996
R"cpp(// Forward class declaration
0 commit comments