[Clang-tools-extra] Mark override a function which overrides a virtual one
authorAnh Tuyen Tran <anhtuyen@ca.ibm.com>
Wed, 29 Jul 2020 05:29:45 +0000 (05:29 +0000)
committerAnh Tuyen Tran <anhtuyen@ca.ibm.com>
Wed, 29 Jul 2020 05:30:33 +0000 (05:30 +0000)
Function void run() on line 286 overrides a virtual function on line 92 of
clang-tools-extra/clangd/index/dex/dexp/Dexp.cpp.  Not marking it override will
cause a build failure when we use -Werror (every warning is treated as an error).

Reviewed By: kbobyrev (Kirill Bobyrev)

Differential Revision: https://reviews.llvm.org/D84794

clang-tools-extra/clangd/index/dex/dexp/Dexp.cpp

index 80d87aa..ca35f62 100644 (file)
@@ -283,7 +283,7 @@ class Export : public Command {
   };
 
 public:
-  void run() {
+  void run() override {
     using namespace clang::clangd;
     // Read input file (as specified in global option)
     auto Buffer = llvm::MemoryBuffer::getFile(IndexLocation);