diff options
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 095c5f0..749f620 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -113,9 +113,9 @@ static struct terminal_info *get_inflow_inferior_data (struct inferior *); we save our handlers in these two variables and set SIGINT and SIGQUIT to SIG_IGN. */ -static gdb::optional<sighandler_t> sigint_ours; +static std::optional<sighandler_t> sigint_ours; #ifdef SIGQUIT -static gdb::optional<sighandler_t> sigquit_ours; +static std::optional<sighandler_t> sigquit_ours; #endif /* The name of the tty (from the `tty' command) that we're giving to |