From facea4a2d4fa543da2241fb4268c34e9c019fca6 Mon Sep 17 00:00:00 2001 From: Haojian Wu Date: Thu, 21 Jan 2021 11:06:43 +0100 Subject: [PATCH] [clangd] Fix a missing override keyword, NFC. --- clang-tools-extra/clangd/index/remote/Client.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang-tools-extra/clangd/index/remote/Client.cpp b/clang-tools-extra/clangd/index/remote/Client.cpp index b09dbf9..a153a88 100644 --- a/clang-tools-extra/clangd/index/remote/Client.cpp +++ b/clang-tools-extra/clangd/index/remote/Client.cpp @@ -152,7 +152,8 @@ public: }); } - llvm::unique_function indexedFiles() const { + llvm::unique_function + 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 -- 2.7.4