Skip to content

Commit 6473a36

Browse files
Make SBFrame::GetLanguageSpecificData() const (#117019)
One last diff I missed between Swift and LLVM.
1 parent 1f342f9 commit 6473a36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/include/lldb/API/SBFrame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class LLDB_API SBFrame {
125125
/// Language plugins can use this API to report language-specific
126126
/// runtime information about this compile unit, such as additional
127127
/// language version details or feature flags.
128-
SBStructuredData GetLanguageSpecificData();
128+
SBStructuredData GetLanguageSpecificData() const;
129129

130130
/// Gets the lexical block that defines the stack frame. Another way to think
131131
/// of this is it will return the block that contains all of the variables

lldb/source/API/SBFrame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ lldb::SBValue SBFrame::EvaluateExpression(const char *expr,
11551155
return expr_result;
11561156
}
11571157

1158-
SBStructuredData SBFrame::GetLanguageSpecificData() {
1158+
SBStructuredData SBFrame::GetLanguageSpecificData() const {
11591159
LLDB_INSTRUMENT_VA(this);
11601160

11611161
SBStructuredData sb_data;

0 commit comments

Comments
 (0)