Don't declare cli_set_logging

cli_set_logging is declared but not defined.  It's probably a leftover
from whenever interpreters were changed to use inheritance.  This
patch removes the declaration.  Tested by grep and rebuilding.
This commit is contained in:
Tom Tromey 2022-06-23 14:26:13 -06:00
parent c86acd3f18
commit d75bdf170e

View File

@ -34,11 +34,6 @@ class cli_interp_base : public interp
bool supports_command_editing () override;
};
/* The CLI interpreter's set_logging_proc method. Exported so other
interpreters can reuse it. */
extern void cli_set_logging (struct interp *interp,
ui_file_up logfile, bool logging_redirect);
extern int cli_interpreter_supports_command_editing (struct interp *interp);
extern void cli_interpreter_pre_command_loop (struct interp *self);