summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-01-12 19:09:48 +0000
committerEric Christopher <echristo@gmail.com>2015-01-12 19:09:48 +0000
commit1c1f14337f5865e701f66a21b34ba3e037383869 (patch)
tree766842cb85b9ce013df7b07a22454679d238196c
parenta01fb9451150bd10da688480ee6ad3a8618fbc6f (diff)
More [-Werror,-Winconsistent-missing-override] fixes.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@225651 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/lldb/Interpreter/CommandObjectRegexCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/lldb/Interpreter/CommandObjectRegexCommand.h b/include/lldb/Interpreter/CommandObjectRegexCommand.h
index 44bdf9854..d86544638 100644
--- a/include/lldb/Interpreter/CommandObjectRegexCommand.h
+++ b/include/lldb/Interpreter/CommandObjectRegexCommand.h
@@ -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
{