@@ -149,7 +149,7 @@ bool SBAddress::OffsetAddress(addr_t offset) {
149149 return false ;
150150}
151151
152- lldb::SBSection SBAddress::GetSection () {
152+ lldb::SBSection SBAddress::GetSection () const {
153153 LLDB_INSTRUMENT_VA (this );
154154
155155 lldb::SBSection sb_section;
@@ -158,7 +158,7 @@ lldb::SBSection SBAddress::GetSection() {
158158 return sb_section;
159159}
160160
161- lldb::addr_t SBAddress::GetOffset () {
161+ lldb::addr_t SBAddress::GetOffset () const {
162162 LLDB_INSTRUMENT_VA (this );
163163
164164 if (m_opaque_up->IsValid ())
@@ -200,7 +200,7 @@ bool SBAddress::GetDescription(SBStream &description) {
200200 return true ;
201201}
202202
203- SBModule SBAddress::GetModule () {
203+ SBModule SBAddress::GetModule () const {
204204 LLDB_INSTRUMENT_VA (this );
205205
206206 SBModule sb_module;
@@ -209,7 +209,7 @@ SBModule SBAddress::GetModule() {
209209 return sb_module;
210210}
211211
212- SBSymbolContext SBAddress::GetSymbolContext (uint32_t resolve_scope) {
212+ SBSymbolContext SBAddress::GetSymbolContext (uint32_t resolve_scope) const {
213213 LLDB_INSTRUMENT_VA (this , resolve_scope);
214214
215215 SBSymbolContext sb_sc;
@@ -219,7 +219,7 @@ SBSymbolContext SBAddress::GetSymbolContext(uint32_t resolve_scope) {
219219 return sb_sc;
220220}
221221
222- SBCompileUnit SBAddress::GetCompileUnit () {
222+ SBCompileUnit SBAddress::GetCompileUnit () const {
223223 LLDB_INSTRUMENT_VA (this );
224224
225225 SBCompileUnit sb_comp_unit;
@@ -228,7 +228,7 @@ SBCompileUnit SBAddress::GetCompileUnit() {
228228 return sb_comp_unit;
229229}
230230
231- SBFunction SBAddress::GetFunction () {
231+ SBFunction SBAddress::GetFunction () const {
232232 LLDB_INSTRUMENT_VA (this );
233233
234234 SBFunction sb_function;
@@ -237,7 +237,7 @@ SBFunction SBAddress::GetFunction() {
237237 return sb_function;
238238}
239239
240- SBBlock SBAddress::GetBlock () {
240+ SBBlock SBAddress::GetBlock () const {
241241 LLDB_INSTRUMENT_VA (this );
242242
243243 SBBlock sb_block;
@@ -246,7 +246,7 @@ SBBlock SBAddress::GetBlock() {
246246 return sb_block;
247247}
248248
249- SBSymbol SBAddress::GetSymbol () {
249+ SBSymbol SBAddress::GetSymbol () const {
250250 LLDB_INSTRUMENT_VA (this );
251251
252252 SBSymbol sb_symbol;
@@ -255,7 +255,7 @@ SBSymbol SBAddress::GetSymbol() {
255255 return sb_symbol;
256256}
257257
258- SBLineEntry SBAddress::GetLineEntry () {
258+ SBLineEntry SBAddress::GetLineEntry () const {
259259 LLDB_INSTRUMENT_VA (this );
260260
261261 SBLineEntry sb_line_entry;
0 commit comments