From: Dodji Seketeli Date: Mon, 25 Jul 2011 17:18:10 +0000 (+0000) Subject: Remove parm name from declaration X-Git-Tag: releases/gcc-4.7.0~5129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=770e5a2e61eb72359bb53f456fdfe46bd5587095;p=thirdparty%2Fgcc.git Remove parm name from declaration gcc/c-family * c-common.h (set_underlying_type): Remove parm name from declaration. From-SVN: r176762 --- diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 7d8529911d0f..42df0a9ec661 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2011-07-25 Dodji Seketeli + + * c-common.h (set_underlying_type): Remove parm name from + declaration. + 2011-07-25 Romain Geissler * 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 202be02a0f36..4ac7c4a3adc4 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);