diff options
author | phdm <phdm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-08 16:51:44 +0000 |
---|---|---|
committer | phdm <phdm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-08 16:51:44 +0000 |
commit | 0b4450c1497b1b8d0dd942eb9badc6c8c6a5f2dc (patch) | |
tree | 67a92bb5664fbd433b7354e0759c9a40d72b2ec0 | |
parent | c63171dda6e10289adc9ad7cfd4868b09988659e (diff) | |
download | gcc-0b4450c1497b1b8d0dd942eb9badc6c8c6a5f2dc.tar.gz |
* cp-demangle.c (template_arg_list_new): Revert previous PARAMS patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34455 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/cp-demangle.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index a8683969395..872d26212f4 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 8 18:52:24 2000 Philippe De Muyter <phdm@macqel.be> + + * cp-demangle.c (template_arg_list_new): Revert previous PARAMS patch. + Thu Jun 8 09:25:54 2000 Philippe De Muyter <phdm@macqel.be> * cp-demangle.c (stdio.h): File included unconditionaly. diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 58aed0d5f4f..fc961d81a83 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -512,7 +512,7 @@ substitutions_print (dm, fp) /* Creates a new template argument list. */ static template_arg_list_t -template_arg_list_new PARAMS((void)) +template_arg_list_new () { template_arg_list_t new_list = (template_arg_list_t) xmalloc (sizeof (struct template_arg_list_def)); |