From af880d85b8ba82c4cd3bfc987df6f8ae85ebb917 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 15 May 2013 12:49:05 +0000 Subject: [PATCH] Remove forward enum declaration in utils.h. These forward declarations are a GNU extension, and they trigger a build warning when the compiler does not support it. gdb/ChangeLog: * utils.h: #include "exceptions.h". (enum errors): Remove partial declaration. --- gdb/ChangeLog | 5 +++++ gdb/utils.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 13bdc3d3cf..a51543b665 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-05-15 Joel Brobecker + + * utils.h: #include "exceptions.h". + (enum errors): Remove partial declaration. + 2013-05-15 Joel Brobecker * gdbarch.sh (core_xfer_shared_libraries_aix): New method. diff --git a/gdb/utils.h b/gdb/utils.h index ad5bea47fd..71ce867189 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -22,6 +22,7 @@ #define UTILS_H #include "cleanups.h" +#include "exceptions.h" extern void initialize_utils (void); @@ -278,7 +279,6 @@ extern char *hex_string_custom (LONGEST, int); extern void fprintf_symbol_filtered (struct ui_file *, const char *, enum language, int); -enum errors; extern void throw_perror_with_name (enum errors errcode, const char *string) ATTRIBUTE_NORETURN; extern void perror_with_name (const char *) ATTRIBUTE_NORETURN; -- 2.34.1