2010-06-18 Rafael Espindola <espindola@google.com>
* plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library): Make argument const. 2010-06-18 Rafael Espindola <espindola@google.com> * plugin.cc (add_input_file,add_input_library) (Plugin_manager::add_input_file): Make filename arguments const. * plugin.h (Plugin_manager::add_input_file): Make filename arguments const.
This commit is contained in:
parent
ce3b386964
commit
e43e1d048f
include
|
@ -1,3 +1,8 @@
|
||||||
|
2010-06-18 Rafael Espindola <espindola@google.com>
|
||||||
|
|
||||||
|
* plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library):
|
||||||
|
Make argument const.
|
||||||
|
|
||||||
2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
|
2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
|
||||||
|
|
||||||
* splay-tree.h: Update copyright years.
|
* splay-tree.h: Update copyright years.
|
||||||
|
|
|
@ -220,13 +220,13 @@ enum ld_plugin_status
|
||||||
|
|
||||||
typedef
|
typedef
|
||||||
enum ld_plugin_status
|
enum ld_plugin_status
|
||||||
(*ld_plugin_add_input_file) (char *pathname);
|
(*ld_plugin_add_input_file) (const char *pathname);
|
||||||
|
|
||||||
/* The linker's interface for adding a library that should be searched. */
|
/* The linker's interface for adding a library that should be searched. */
|
||||||
|
|
||||||
typedef
|
typedef
|
||||||
enum ld_plugin_status
|
enum ld_plugin_status
|
||||||
(*ld_plugin_add_input_library) (char *libname);
|
(*ld_plugin_add_input_library) (const char *libname);
|
||||||
|
|
||||||
/* The linker's interface for issuing a warning or error message. */
|
/* The linker's interface for issuing a warning or error message. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue