From: Ben Elliston Date: Tue, 22 Jan 2008 05:57:39 +0000 (+0000) Subject: * tree.c (check_qualified_type): Improve function description. X-Git-Tag: releases/gcc-4.3.0~492 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d4f537493ecfd41dcdaef735eee2bedce6a85f6;p=thirdparty%2Fgcc.git * tree.c (check_qualified_type): Improve function description. From-SVN: r131711 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d65e49615d58..b241301497a9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-01-22 Ben Elliston + + * tree.c (check_qualified_type): Improve function description. + 2008-01-21 Jason Merrill PR c++/34196 diff --git a/gcc/tree.c b/gcc/tree.c index b96dc35293f5..4757cbccc137 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -4151,7 +4151,7 @@ set_type_quals (tree type, int type_quals) TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0; } -/* Returns true iff cand is equivalent to base with type_quals. */ +/* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */ bool check_qualified_type (const_tree cand, const_tree base, int type_quals)