mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-26 07:19:16 +08:00
Turn set_inferior_args_vector into method of inferior
This patch turns set_inferior_args_vector into an overload of inferior::set_args. Regression tested on x86-64 Fedora 36.
This commit is contained in:
@ -164,6 +164,14 @@ inferior::tty ()
|
||||
return m_terminal;
|
||||
}
|
||||
|
||||
/* See inferior.h. */
|
||||
|
||||
void
|
||||
inferior::set_args (gdb::array_view<char * const> args)
|
||||
{
|
||||
set_args (construct_inferior_arguments (args));
|
||||
}
|
||||
|
||||
void
|
||||
inferior::add_continuation (std::function<void ()> &&cont)
|
||||
{
|
||||
|
Reference in New Issue
Block a user