diff options
Diffstat (limited to 'gdb/common/common-exceptions.c')
-rw-r--r-- | gdb/common/common-exceptions.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/common/common-exceptions.c b/gdb/common/common-exceptions.c index 6378dc4..59c27ab 100644 --- a/gdb/common/common-exceptions.c +++ b/gdb/common/common-exceptions.c @@ -21,8 +21,6 @@ #include "common-exceptions.h" #include <forward_list> -const struct gdb_exception exception_none; - /* Possible catcher states. */ enum catcher_state { /* Initial state, a new catcher has just been created. */ @@ -47,7 +45,7 @@ struct catcher /* Jump buffer pointing back at the exception handler. */ jmp_buf buf; /* Status buffer belonging to the exception handler. */ - struct gdb_exception exception = exception_none; + struct gdb_exception exception; }; /* Where to go for throw_exception(). */ |