diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2022-01-10 12:05:54 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2022-01-10 12:05:54 -0800 |
commit | da4b7437f932570227b9debecc031a40875445fa (patch) | |
tree | 64e3450f4eb550a62bfa0f27dc4cc29890426018 /lldb/source/API/SBCommandInterpreter.cpp | |
parent | 69c55d63620066dfd6714b0b666f7cac5a3407eb (diff) | |
download | llvm-da4b7437f932570227b9debecc031a40875445fa.zip llvm-da4b7437f932570227b9debecc031a40875445fa.tar.gz llvm-da4b7437f932570227b9debecc031a40875445fa.tar.bz2 |
[lldb] Remove LLDB_RECORD_DUMMY_* macros
Diffstat (limited to 'lldb/source/API/SBCommandInterpreter.cpp')
-rw-r--r-- | lldb/source/API/SBCommandInterpreter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp index 0237060..d543246 100644 --- a/lldb/source/API/SBCommandInterpreter.cpp +++ b/lldb/source/API/SBCommandInterpreter.cpp @@ -551,9 +551,9 @@ bool SBCommandInterpreter::EventIsCommandInterpreterEvent( bool SBCommandInterpreter::SetCommandOverrideCallback( const char *command_name, lldb::CommandOverrideCallback callback, void *baton) { - LLDB_RECORD_DUMMY(bool, SBCommandInterpreter, SetCommandOverrideCallback, - (const char *, lldb::CommandOverrideCallback, void *), - command_name, callback, baton); + LLDB_RECORD_METHOD(bool, SBCommandInterpreter, SetCommandOverrideCallback, + (const char *, lldb::CommandOverrideCallback, void *), + command_name, callback, baton); if (command_name && command_name[0] && IsValid()) { llvm::StringRef command_name_str = command_name; |