Fix indentation and add a docstring for the ctor.

llvm-svn: 136187
This commit is contained in:
Johnny Chen 2011-07-26 23:42:01 +00:00
parent dab4b9a4b2
commit 33c0c77073

View File

@ -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);