[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

@@ -630,9 +630,8 @@ SBSourceManager SBDebugger::GetSourceManager() {
}
bool SBDebugger::GetDefaultArchitecture(char *arch_name, size_t arch_name_len) {
LLDB_RECORD_CHAR_PTR_STATIC_METHOD(bool, SBDebugger, GetDefaultArchitecture,
(char *, size_t), arch_name, "",
arch_name_len);
LLDB_RECORD_STATIC_METHOD(bool, SBDebugger, GetDefaultArchitecture,
(char *, size_t), arch_name, "", arch_name_len);
if (arch_name && arch_name_len) {
ArchSpec default_arch = Target::GetDefaultArchitecture();