aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Host/common/FileSystem.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <adrian-prantl@users.noreply.github.com>2023-12-19 08:49:12 -0800
committerGitHub <noreply@github.com>2023-12-19 08:49:12 -0800
commit45657e81a111021dab5f1daa9482afae5d95569c (patch)
treefddf0911a1896f6690da15226a2fa369dd66d266 /lldb/source/Host/common/FileSystem.cpp
parent49efb082cced5140fc4ea4476811f697a157bbfc (diff)
downloadllvm-45657e81a111021dab5f1daa9482afae5d95569c.zip
llvm-45657e81a111021dab5f1daa9482afae5d95569c.tar.gz
llvm-45657e81a111021dab5f1daa9482afae5d95569c.tar.bz2
Remove unused FileSPec::IsResolved() functionality. (#75840)
This API seems to be completely unused. Should we just remove it?
Diffstat (limited to 'lldb/source/Host/common/FileSystem.cpp')
-rw-r--r--lldb/source/Host/common/FileSystem.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Host/common/FileSystem.cpp b/lldb/source/Host/common/FileSystem.cpp
index 52227a9..5153a0a9 100644
--- a/lldb/source/Host/common/FileSystem.cpp
+++ b/lldb/source/Host/common/FileSystem.cpp
@@ -259,7 +259,6 @@ void FileSystem::Resolve(FileSpec &file_spec) {
file_spec.SetDirectory(path);
else
file_spec.SetPath(path);
- file_spec.SetIsResolved(true);
}
template <typename T>