forked from OSchip/llvm-project
Fix indentation and add a docstring for the ctor.
llvm-svn: 136187
This commit is contained in:
parent
dab4b9a4b2
commit
33c0c77073
|
@ -50,7 +50,9 @@ public:
|
|||
|
||||
SBAddress (const lldb::SBAddress &rhs);
|
||||
|
||||
// Create an address by resolving a load address using the supplied target
|
||||
%feature("docstring", "
|
||||
Create an address by resolving a load address using the supplied target.
|
||||
") SBAddress;
|
||||
SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
|
||||
|
||||
~SBAddress ();
|
||||
|
@ -67,9 +69,9 @@ public:
|
|||
addr_t
|
||||
GetLoadAddress (const lldb::SBTarget &target) const;
|
||||
|
||||
void
|
||||
SetLoadAddress (lldb::addr_t load_addr,
|
||||
lldb::SBTarget &target);
|
||||
void
|
||||
SetLoadAddress (lldb::addr_t load_addr,
|
||||
lldb::SBTarget &target);
|
||||
|
||||
bool
|
||||
OffsetAddress (addr_t offset);
|
||||
|
|
Loading…
Reference in New Issue