Skip to content

Commit 120725d

Browse files
[clangd] Fix a warning
This patch fixes: clang-tools-extra/clangd/unittests/HoverTests.cpp:4810:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
1 parent 70d73b3 commit 120725d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4807,7 +4807,7 @@ TEST(Hover, HoverMacroContentsLimit) {
48074807

48084808
EXPECT_EQ(H->Definition, Case.ExpectedDefinition);
48094809
}
4810-
};
4810+
}
48114811

48124812
TEST(Hover, FunctionParameters) {
48134813
struct {

0 commit comments

Comments
 (0)