Make SBFrame::GetLanguageSpecificData() const (#117019)

One last diff I missed between Swift and LLVM.
This commit is contained in:
Adrian Prantl 2024-11-20 10:07:23 -08:00 committed by GitHub
parent 1f342f94b2
commit 6473a36edc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ public:
/// Language plugins can use this API to report language-specific
/// runtime information about this compile unit, such as additional
/// language version details or feature flags.
SBStructuredData GetLanguageSpecificData();
SBStructuredData GetLanguageSpecificData() const;
/// Gets the lexical block that defines the stack frame. Another way to think
/// of this is it will return the block that contains all of the variables

View File

@ -1155,7 +1155,7 @@ lldb::SBValue SBFrame::EvaluateExpression(const char *expr,
return expr_result;
}
SBStructuredData SBFrame::GetLanguageSpecificData() {
SBStructuredData SBFrame::GetLanguageSpecificData() const {
LLDB_INSTRUMENT_VA(this);
SBStructuredData sb_data;