summaryrefslogtreecommitdiffstats
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
commitacbb6e64e8ea734f479e57bb9e33bc8241f9d20c (patch)
treec84a09e4d590de52eeef71adfd0bf10c5a7f541d
parent6c0aee3248a2c06ab4690e2ba7a50edd0e0bf8f4 (diff)
downloadbcm5719-llvm-acbb6e64e8ea734f479e57bb9e33bc8241f9d20c.tar.gz
bcm5719-llvm-acbb6e64e8ea734f479e57bb9e33bc8241f9d20c.zip
More [-Werror,-Winconsistent-missing-override] fixes.
llvm-svn: 225651
-rw-r--r--lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h b/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
index 44bdf9854c5..d8654463877 100644
--- a/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
+++ b/lldb/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
{
OpenPOWER on IntegriCloud