diff options
author | Adrian Prantl <adrian-prantl@users.noreply.github.com> | 2023-12-19 08:49:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 08:49:12 -0800 |
commit | 45657e81a111021dab5f1daa9482afae5d95569c (patch) | |
tree | fddf0911a1896f6690da15226a2fa369dd66d266 /lldb/source/Host/common/FileSystem.cpp | |
parent | 49efb082cced5140fc4ea4476811f697a157bbfc (diff) | |
download | llvm-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.cpp | 1 |
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> |