diff options
Diffstat (limited to 'lldb/source/Commands/CommandCompletions.cpp')
-rw-r--r-- | lldb/source/Commands/CommandCompletions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandCompletions.cpp b/lldb/source/Commands/CommandCompletions.cpp index 42275cb982d..91a6cfe6258 100644 --- a/lldb/source/Commands/CommandCompletions.cpp +++ b/lldb/source/Commands/CommandCompletions.cpp @@ -469,7 +469,7 @@ CommandCompletions::SourceFileCompleter::SourceFileCompleter m_include_support_files (include_support_files), m_matching_files() { - FileSpec partial_spec (m_completion_str.c_str()); + FileSpec partial_spec (m_completion_str.c_str(), false); m_file_name = partial_spec.GetFilename().GetCString(); m_dir_name = partial_spec.GetDirectory().GetCString(); } @@ -661,7 +661,7 @@ CommandCompletions::ModuleCompleter::ModuleCompleter ) : CommandCompletions::Completer (interpreter, completion_str, match_start_point, max_return_elements, matches) { - FileSpec partial_spec (m_completion_str.c_str()); + FileSpec partial_spec (m_completion_str.c_str(), false); m_file_name = partial_spec.GetFilename().GetCString(); m_dir_name = partial_spec.GetDirectory().GetCString(); } |