diff options
Diffstat (limited to 'lldb/source/Plugins/Platform/MacOSX')
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h | 11 |
2 files changed, 5 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h index decc835fb52..25344e6918c 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h @@ -65,7 +65,7 @@ public: return GetPluginNameStatic(); } - virtual uint32_t + uint32_t GetPluginVersion() override { return 1; diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h b/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h index 0b8d35b8b03..e2694b781f8 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h @@ -91,14 +91,11 @@ public: GetFileWithUUID (const lldb_private::FileSpec &platform_file, const lldb_private::UUID *uuid_ptr, lldb_private::FileSpec &local_file) override; - - virtual bool - GetSupportedArchitectureAtIndex (uint32_t idx, - lldb_private::ArchSpec &arch) override; - virtual lldb_private::ConstString - GetSDKDirectory (lldb_private::Target &target) override; - + bool GetSupportedArchitectureAtIndex(uint32_t idx, lldb_private::ArchSpec &arch) override; + + lldb_private::ConstString GetSDKDirectory(lldb_private::Target &target) override; + void AddClangModuleCompilationOptions (lldb_private::Target *target, std::vector<std::string> &options) override { |