mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 02:06:07 +00:00
Make SBFrame::GetLanguageSpecificData() const (#117019)
One last diff I missed between Swift and LLVM.
This commit is contained in:
parent
1f342f94b2
commit
6473a36edc
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user