forked from OSchip/llvm-project
[clangd] Fix a missing override keyword, NFC.
This commit is contained in:
parent
bee486851c
commit
facea4a2d4
|
@ -152,7 +152,8 @@ public:
|
|||
});
|
||||
}
|
||||
|
||||
llvm::unique_function<bool(llvm::StringRef) const> indexedFiles() const {
|
||||
llvm::unique_function<bool(llvm::StringRef) const>
|
||||
indexedFiles() const override {
|
||||
// FIXME: For now we always return "false" regardless of whether the file
|
||||
// was indexed or not. A possible implementation could be based on
|
||||
// the idea that we do not want to send a request at every
|
||||
|
|
Loading…
Reference in New Issue