Fix comma at end of enumerator list seen with -std=c++98.

	* plugin-api.h (enum ld_plugin_symbol_type): Remove
	comma after last value of an enum.
	* lto-symtab.h (enum gcc_plugin_symbol_type): Likewise.
parent 84166020
2020-03-21 Martin Liska <mliska@suse.cz>
* plugin-api.h (enum ld_plugin_symbol_type): Remove
comma after last value of an enum.
* lto-symtab.h (enum gcc_plugin_symbol_type): Likewise.
2020-03-19 Martin Liska <mliska@suse.cz> 2020-03-19 Martin Liska <mliska@suse.cz>
* lto-symtab.h (enum gcc_plugin_symbol_type): New. * lto-symtab.h (enum gcc_plugin_symbol_type): New.
......
...@@ -42,7 +42,7 @@ enum gcc_plugin_symbol_type ...@@ -42,7 +42,7 @@ enum gcc_plugin_symbol_type
{ {
GCCST_UNKNOWN, GCCST_UNKNOWN,
GCCST_FUNCTION, GCCST_FUNCTION,
GCCST_VARIABLE, GCCST_VARIABLE
}; };
enum gcc_plugin_symbol_section_kind enum gcc_plugin_symbol_section_kind
......
...@@ -141,7 +141,7 @@ enum ld_plugin_symbol_type ...@@ -141,7 +141,7 @@ enum ld_plugin_symbol_type
{ {
LDST_UNKNOWN, LDST_UNKNOWN,
LDST_FUNCTION, LDST_FUNCTION,
LDST_VARIABLE, LDST_VARIABLE
}; };
enum ld_plugin_symbol_section_kind enum ld_plugin_symbol_section_kind
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment