Skip to content

[lldb][NFC] Remove unused field Platform::m_remote_url #118411

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lldb/include/lldb/Target/Platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,6 @@ class Platform : public PluginInterface {
LLVM_PRETTY_FUNCTION, GetName()));
}

const std::string &GetRemoteURL() const { return m_remote_url; }

bool IsHost() const {
return m_is_host; // Is this the default host platform?
}
Expand Down Expand Up @@ -977,7 +975,6 @@ class Platform : public PluginInterface {
std::string m_sdk_build;
FileSpec m_working_dir; // The working directory which is used when installing
// modules that have no install path set
std::string m_remote_url;
std::string m_hostname;
llvm::VersionTuple m_os_version;
ArchSpec
Expand Down
Loading