C++ keyword cleanliness, mostly auto-generated
This patch renames symbols that happen to have names which are reserved keywords in C++. Most of this was generated with Tromey's cxx-conversion.el script. Some places where later hand massaged a bit, to fix formatting, etc. And this was rebased several times meanwhile, along with re-running the script, so re-running the script from scratch probably does not result in the exact same output. I don't think that matters anyway. gdb/ 2015-02-27 Tom Tromey <tromey@redhat.com> Pedro Alves <palves@redhat.com> Rename symbols whose names are reserved C++ keywords throughout. gdb/gdbserver/ 2015-02-27 Tom Tromey <tromey@redhat.com> Pedro Alves <palves@redhat.com> Rename symbols whose names are reserved C++ keywords throughout.
This commit is contained in:
parent
3bc3d82a00
commit
fe978cb071
99 changed files with 1140 additions and 1127 deletions
|
@ -248,7 +248,7 @@ typedef void (show_value_ftype) (struct ui_file *file,
|
|||
extern show_value_ftype deprecated_show_value_hack;
|
||||
|
||||
extern void add_setshow_enum_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
const char *const *enumlist,
|
||||
const char **var,
|
||||
const char *set_doc,
|
||||
|
@ -260,7 +260,7 @@ extern void add_setshow_enum_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_auto_boolean_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
enum auto_boolean *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -271,7 +271,7 @@ extern void add_setshow_auto_boolean_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_boolean_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
int *var,
|
||||
const char *set_doc, const char *show_doc,
|
||||
const char *help_doc,
|
||||
|
@ -281,7 +281,7 @@ extern void add_setshow_boolean_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_filename_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
char **var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -292,7 +292,7 @@ extern void add_setshow_filename_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_string_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
char **var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -304,7 +304,7 @@ extern void add_setshow_string_cmd (const char *name,
|
|||
|
||||
extern struct cmd_list_element *add_setshow_string_noescape_cmd
|
||||
(const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
char **var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -315,7 +315,7 @@ extern struct cmd_list_element *add_setshow_string_noescape_cmd
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_optional_filename_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
char **var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -326,7 +326,7 @@ extern void add_setshow_optional_filename_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_integer_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
int *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -337,7 +337,7 @@ extern void add_setshow_integer_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_uinteger_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
unsigned int *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -348,7 +348,7 @@ extern void add_setshow_uinteger_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_zinteger_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
int *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -359,7 +359,7 @@ extern void add_setshow_zinteger_cmd (const char *name,
|
|||
struct cmd_list_element **show_list);
|
||||
|
||||
extern void add_setshow_zuinteger_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
unsigned int *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
@ -371,7 +371,7 @@ extern void add_setshow_zuinteger_cmd (const char *name,
|
|||
|
||||
extern void
|
||||
add_setshow_zuinteger_unlimited_cmd (const char *name,
|
||||
enum command_class class,
|
||||
enum command_class theclass,
|
||||
int *var,
|
||||
const char *set_doc,
|
||||
const char *show_doc,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue