Add cast to exception_none
Fixes, in C++ mode: ../../src/gdb/common/common-exceptions.c:23:69: error: invalid conversion from ‘int’ to ‘return_reason’ [-fpermissive] const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL }; ^ (I considered adding an enum value for '0', but the code and comments around return_reason and its uses explain how 0 is special/internal, so I'm leaving it be.) gdb/ChangeLog: 2015-10-29 Pedro Alves <palves@redhat.com> * common/common-exceptions.c (exception_none): Add cast.
This commit is contained in:
parent
e3bdafe2ba
commit
44a8b4df1d
2 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
#include "common-defs.h"
|
||||
#include "common-exceptions.h"
|
||||
|
||||
const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL };
|
||||
const struct gdb_exception exception_none = { (enum return_reason) 0, GDB_NO_ERROR, NULL };
|
||||
|
||||
#ifndef __cplusplus
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue