More [-Werror,-Winconsistent-missing-override] fixes.
authorEric Christopher <echristo@gmail.com>
Mon, 12 Jan 2015 19:09:48 +0000 (19:09 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 12 Jan 2015 19:09:48 +0000 (19:09 +0000)
llvm-svn: 225651

lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h

index 44bdf98..d865446 100644 (file)
@@ -52,18 +52,18 @@ public:
         return !m_entries.empty();
     }
     
-    virtual int
+    int
     HandleCompletion (Args &input,
                       int &cursor_index,
                       int &cursor_char_position,
                       int match_start_point,
                       int max_return_elements,
                       bool &word_complete,
-                      StringList &matches);
+                      StringList &matches) override;
 
 protected:
-    virtual bool
-    DoExecute (const char *command, CommandReturnObject &result);
+    bool
+    DoExecute (const char *command, CommandReturnObject &result) override;
 
     struct Entry
     {