[Go] Fix inconsistent-missing-override warnings.

llvm-svn: 249531
This commit is contained in:
Bruce Mitchener 2015-10-07 10:02:24 +00:00
parent 4c0c7a7f52
commit 7fa5cda9e1
1 changed files with 4 additions and 4 deletions

View File

@ -78,11 +78,11 @@ namespace lldb_private {
//------------------------------------------------------------------
// PluginInterface protocol
//------------------------------------------------------------------
virtual lldb_private::ConstString
GetPluginName();
lldb_private::ConstString
GetPluginName() override;
virtual uint32_t
GetPluginVersion();
uint32_t
GetPluginVersion() override;
private:
GoLanguageRuntime(Process *process) : lldb_private::LanguageRuntime(process) { } // Call CreateInstance instead.