[lldb/API] Add missing LLDB_REGISTER_METHOD macros

Add LLDB_REGISTER_METHOD macros for GetRetriesWithFixIts and
SetRetriesWithFixIts.
This commit is contained in:
Jonas Devlieghere
2020-04-06 16:09:09 -07:00
parent d3a31c4db4
commit 29beabbe51

View File

@@ -343,6 +343,9 @@ void RegisterMethods<SBExpressionOptions>(Registry &R) {
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTopLevel, (bool));
LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetAllowJIT, ());
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetAllowJIT, (bool));
LLDB_REGISTER_METHOD(uint64_t, SBExpressionOptions, GetRetriesWithFixIts, ());
LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetRetriesWithFixIts,
(uint64_t));
}
}