[NFC][clangd] fix warning for extra semicolon

llvm-svn: 341933
This commit is contained in:
Jonas Toth 2018-09-11 13:01:49 +00:00
parent 945604d511
commit b88eebebbe
1 changed files with 2 additions and 2 deletions

View File

@ -1210,7 +1210,7 @@ TEST(FindReferences, NeedsIndex) {
TU.Code = ("\n\n" + Main.code()).str();
EXPECT_THAT(findReferences(AST, Main.point(), TU.index().get()),
ElementsAre(RangeIs(Main.range())));
};
}
TEST(FindReferences, NoQueryForLocalSymbols) {
struct RecordingIndex : public MemIndex {
@ -1244,7 +1244,7 @@ TEST(FindReferences, NoQueryForLocalSymbols) {
else
EXPECT_EQ(Rec.RefIDs, llvm::None) << T.AnnotatedCode;
}
};
}
} // namespace
} // namespace clangd