Don't declare cli_set_logging
authorTom Tromey <tromey@adacore.com>
Thu, 23 Jun 2022 20:26:13 +0000 (14:26 -0600)
committerTom Tromey <tromey@adacore.com>
Thu, 23 Jun 2022 20:26:13 +0000 (14:26 -0600)
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.

gdb/cli/cli-interp.h

index 2e89a36d86a358946f1033d9515d7d1252fb06bf..863e8c3133eb997e346b9fd1cca2443963fe7147 100644 (file)
@@ -34,11 +34,6 @@ public:
   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);