[Lldb-commits] [lldb] [lldb][NFC] Remove unused field Platform::m_remote_url (PR #118411)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 2 15:19:03 PST 2024
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/118411
None
>From 41ce9de83da1a7131bf6c479fd0de3a57f5b8113 Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Mon, 2 Dec 2024 14:42:25 -0800
Subject: [PATCH] [lldb][NFC] Remove unused field Platform::m_remote_url
---
lldb/include/lldb/Target/Platform.h | 3 ---
1 file changed, 3 deletions(-)
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
More information about the lldb-commits
mailing list