forked from OSchip/llvm-project
Add documentation for SBTarget::AppendImageSearchPath
llvm-svn: 339189
This commit is contained in:
parent
be1166a43b
commit
a320e39acd
|
@ -272,6 +272,7 @@ public:
|
|||
|
||||
lldb::SBFileSpec GetExecutable();
|
||||
|
||||
// Append the path mapping (from -> to) to the target's paths mapping list.
|
||||
void AppendImageSearchPath(const char *from, const char *to,
|
||||
lldb::SBError &error);
|
||||
|
||||
|
|
|
@ -373,6 +373,9 @@ public:
|
|||
lldb::SBFileSpec
|
||||
GetExecutable ();
|
||||
|
||||
%feature("docstring", "
|
||||
/// Append the path mapping (from -> to) to the target's paths mapping list.
|
||||
") AppendImageSearchPath;
|
||||
void
|
||||
AppendImageSearchPath (const char *from,
|
||||
const char *to,
|
||||
|
|
Loading…
Reference in New Issue