diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandAlias.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandAlias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandAlias.cpp b/lldb/source/Interpreter/CommandAlias.cpp index 8fba0765650..c75615f269d 100644 --- a/lldb/source/Interpreter/CommandAlias.cpp +++ b/lldb/source/Interpreter/CommandAlias.cpp @@ -143,7 +143,7 @@ bool CommandAlias::Execute(const char *args_string, llvm_unreachable("CommandAlias::Execute is not to be called"); } -void CommandAlias::GetAliasExpansion(StreamString &help_string) { +void CommandAlias::GetAliasExpansion(StreamString &help_string) const { llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); help_string.Printf("'%*s", (int)command_name.size(), command_name.data()); |