[lldb] Remove LLDB_RECORD_CHAR_PTR_* macros

This commit is contained in:
Jonas Devlieghere
2022-01-10 11:55:50 -08:00
parent e121269131
commit 69c55d6362
6 changed files with 14 additions and 34 deletions

View File

@@ -328,8 +328,8 @@ SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) {
}
size_t SBThread::GetStopDescription(char *dst, size_t dst_len) {
LLDB_RECORD_CHAR_PTR_METHOD(size_t, SBThread, GetStopDescription,
(char *, size_t), dst, "", dst_len);
LLDB_RECORD_METHOD(size_t, SBThread, GetStopDescription, (char *, size_t),
dst, "", dst_len);
std::unique_lock<std::recursive_mutex> lock;
ExecutionContext exe_ctx(m_opaque_sp.get(), lock);