diff options
author | Greg Clayton <gclayton@apple.com> | 2013-10-30 18:40:41 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-10-30 18:40:41 +0000 |
commit | c1ae724757cb5ce577db044f432a383991c898ec (patch) | |
tree | e60c28e7cdb1073c508c7c0a87d11061981cede6 /lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h | |
parent | 00e24e48b64525064c88c2b380df7085ba808cdf (diff) | |
download | bcm5719-llvm-c1ae724757cb5ce577db044f432a383991c898ec.tar.gz bcm5719-llvm-c1ae724757cb5ce577db044f432a383991c898ec.zip |
Fixed a warning in PlatformiOSSimulator where GetSDKDirectory was hiding recently added virtual function. Renamed GetSDKDirectory to GetSDKsDirectory to fix the issue. GetSDKsDirectory is a better fit because it finds the directory that contains all SDKs, not the current one.
llvm-svn: 193707
Diffstat (limited to 'lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h')
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h index e75cf894904..81394a44e02 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h @@ -105,7 +105,7 @@ protected: //std::vector<FileSpec> m_device_support_os_dirs; const char * - GetSDKDirectory(); + GetSDKsDirectory(); private: DISALLOW_COPY_AND_ASSIGN (PlatformiOSSimulator); |