Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit 8b805a6

Browse files
committedAug 7, 2018
Add documentation for SBTarget::AppendImageSearchPath
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@339189 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 1e57d1c commit 8b805a6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎include/lldb/API/SBTarget.h

+1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ class LLDB_API SBTarget {
272272

273273
lldb::SBFileSpec GetExecutable();
274274

275+
// Append the path mapping (from -> to) to the target's paths mapping list.
275276
void AppendImageSearchPath(const char *from, const char *to,
276277
lldb::SBError &error);
277278

‎scripts/interface/SBTarget.i

+3
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,9 @@ public:
373373
lldb::SBFileSpec
374374
GetExecutable ();
375375

376+
%feature("docstring", "
377+
/// Append the path mapping (from -> to) to the target's paths mapping list.
378+
") AppendImageSearchPath;
376379
void
377380
AppendImageSearchPath (const char *from,
378381
const char *to,

0 commit comments

Comments
 (0)