[Lldb-commits] [lldb] [lldb][NFC] Remove unused field Platform::m_remote_url (PR #118411)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 2 15:19:39 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Alex Langford (bulbazord)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/118411.diff
1 Files Affected:
- (modified) lldb/include/lldb/Target/Platform.h (-3)
``````````diff
diff --git a/lldb/include/lldb/Target/Platform.h b/lldb/include/lldb/Target/Platform.h
index 920f80bc733174..f8a2cbf0d5d049 100644
--- a/lldb/include/lldb/Target/Platform.h
+++ b/lldb/include/lldb/Target/Platform.h
@@ -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?
}
@@ -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
``````````
</details>
https://github.com/llvm/llvm-project/pull/118411
More information about the lldb-commits
mailing list