mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 15:28:53 -04:00
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);
|
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 (lldb::addr_t load_addr, lldb::SBTarget &target);
|
||||||
|
|
||||||
~SBAddress ();
|
~SBAddress ();
|
||||||
@ -67,9 +69,9 @@ public:
|
|||||||
addr_t
|
addr_t
|
||||||
GetLoadAddress (const lldb::SBTarget &target) const;
|
GetLoadAddress (const lldb::SBTarget &target) const;
|
||||||
|
|
||||||
void
|
void
|
||||||
SetLoadAddress (lldb::addr_t load_addr,
|
SetLoadAddress (lldb::addr_t load_addr,
|
||||||
lldb::SBTarget &target);
|
lldb::SBTarget &target);
|
||||||
|
|
||||||
bool
|
bool
|
||||||
OffsetAddress (addr_t offset);
|
OffsetAddress (addr_t offset);
|
||||||
|
Loading…
Reference in New Issue
Block a user