[Lldb-commits] [lldb] r225651 - More [-Werror, -Winconsistent-missing-override] fixes.

Eric Christopher echristo at gmail.com
Mon Jan 12 11:09:49 PST 2015


Author: echristo
Date: Mon Jan 12 13:09:48 2015
New Revision: 225651

URL: http://llvm.org/viewvc/llvm-project?rev=225651&view=rev
Log:
More [-Werror,-Winconsistent-missing-override] fixes.

Modified:
    lldb/trunk/include/lldb/Interpreter/CommandObjectRegexCommand.h

Modified: lldb/trunk/include/lldb/Interpreter/CommandObjectRegexCommand.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/CommandObjectRegexCommand.h?rev=225651&r1=225650&r2=225651&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/CommandObjectRegexCommand.h (original)
+++ lldb/trunk/include/lldb/Interpreter/CommandObjectRegexCommand.h Mon Jan 12 13:09:48 2015
@@ -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
     {





More information about the lldb-commits mailing list