diff options
Diffstat (limited to 'lldb/source/API/SBFileSpec.cpp')
-rw-r--r-- | lldb/source/API/SBFileSpec.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/API/SBFileSpec.cpp b/lldb/source/API/SBFileSpec.cpp index e1a83999f03..5ec93f3b4ff 100644 --- a/lldb/source/API/SBFileSpec.cpp +++ b/lldb/source/API/SBFileSpec.cpp @@ -61,6 +61,13 @@ SBFileSpec::Exists () const return false; } +bool +SBFileSpec::ResolveExecutableLocation () +{ + if (m_opaque_ap.get()) + return m_opaque_ap->ResolveExecutableLocation (); + return false; +} int SBFileSpec::ResolvePath (const char *src_path, char *dst_path, size_t dst_len) |