Skip to content

Commit 0d12127

Browse files
committed
[Target] Remove unused method Target::GetDefaultClangModuleSearchPaths
llvm-svn: 366161
1 parent 01ee172 commit 0d12127

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

lldb/include/lldb/Target/Target.h

-2
Original file line numberDiff line numberDiff line change
@@ -491,8 +491,6 @@ class Target : public std::enable_shared_from_this<Target>,
491491

492492
static FileSpecList GetDefaultDebugFileSearchPaths();
493493

494-
static FileSpecList GetDefaultClangModuleSearchPaths();
495-
496494
static ArchSpec GetDefaultArchitecture();
497495

498496
static void SetDefaultArchitecture(const ArchSpec &arch);

lldb/source/Target/Target.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -2330,13 +2330,6 @@ FileSpecList Target::GetDefaultDebugFileSearchPaths() {
23302330
return FileSpecList();
23312331
}
23322332

2333-
FileSpecList Target::GetDefaultClangModuleSearchPaths() {
2334-
TargetPropertiesSP properties_sp(Target::GetGlobalProperties());
2335-
if (properties_sp)
2336-
return properties_sp->GetClangModuleSearchPaths();
2337-
return FileSpecList();
2338-
}
2339-
23402333
ArchSpec Target::GetDefaultArchitecture() {
23412334
TargetPropertiesSP properties_sp(Target::GetGlobalProperties());
23422335
if (properties_sp)

0 commit comments

Comments
 (0)