Skip to content

Commit 29beabb

Browse files
committed
[lldb/API] Add missing LLDB_REGISTER_METHOD macros
Add LLDB_REGISTER_METHOD macros for GetRetriesWithFixIts and SetRetriesWithFixIts.
1 parent d3a31c4 commit 29beabb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/source/API/SBExpressionOptions.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,9 @@ void RegisterMethods<SBExpressionOptions>(Registry &R) {
343343
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTopLevel, (bool));
344344
LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetAllowJIT, ());
345345
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetAllowJIT, (bool));
346+
LLDB_REGISTER_METHOD(uint64_t, SBExpressionOptions, GetRetriesWithFixIts, ());
347+
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetRetriesWithFixIts,
348+
(uint64_t));
346349
}
347350

348351
}

0 commit comments

Comments
 (0)