Add cast to exception_none
authorPedro Alves <palves@redhat.com>
Thu, 29 Oct 2015 12:55:01 +0000 (12:55 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 29 Oct 2015 12:55:01 +0000 (12:55 +0000)
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.

gdb/ChangeLog
gdb/common/common-exceptions.c

index 0bb06aea0307a6bf5a23c5ccd6cdb703f3bfce80..66f6dd6439d82f2e89e4ff844abe1bc6ba2b6083 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-29  Pedro Alves  <palves@redhat.com>
+
+       * common/common-exceptions.c (exception_none): Add cast.
+
 2015-10-29  Pedro Alves  <palves@redhat.com>
 
        * compile/compile-c-types.c (struct type_map_instance)
index 8ee96aba528232e9f510b617bb42d68cbcb7602c..ce476a257b19f33e406f6aa8c7de6b87f611a4fa 100644 (file)
@@ -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