diff options
-rw-r--r-- | gcc/c-family/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-family/c-common.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 7d85299..42df0a9 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2011-07-25 Dodji Seketeli <dodji@redhat.com> + + * c-common.h (set_underlying_type): Remove parm name from + declaration. + 2011-07-25 Romain Geissler <romain.geissler@gmail.com> * c-pretty-print.h: Search c-common.h in c-family. diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index 202be02..4ac7c4a 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -985,7 +985,7 @@ extern void warn_for_sign_compare (location_t, enum tree_code resultcode); extern void do_warn_double_promotion (tree, tree, tree, const char *, location_t); -extern void set_underlying_type (tree x); +extern void set_underlying_type (tree); extern VEC(tree,gc) *make_tree_vector (void); extern void release_tree_vector (VEC(tree,gc) *); extern VEC(tree,gc) *make_tree_vector_single (tree); |