From: Dodji Seketeli Date: Thu, 27 Oct 2011 17:44:39 +0000 (+0000) Subject: Small comment cleanup X-Git-Tag: releases/gcc-4.7.0~2766 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f6dd97b572fdf6f10791226f8854fd4601d53cc;p=thirdparty%2Fgcc.git Small comment cleanup gcc/cp/ * cp-tree.h (DECL_DECLARES_TYPE_P): Fix comment. From-SVN: r180568 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3f4455eb6afb..f7b6fbc38212 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2011-10-27 Dodji Seketeli + + * cp-tree.h (DECL_DECLARES_TYPE_P): Fix comment. + 2011-10-26 Jason Merrill * typeck.c (check_literal_operator_args): Avoid building types. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index cc12d154a227..7ff149137b51 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3625,7 +3625,7 @@ more_aggr_init_expr_args_p (const aggr_init_expr_arg_iterator *iter) && DECL_TEMPLATE_RESULT (NODE) != NULL_TREE \ && DECL_IMPLICIT_TYPEDEF_P (DECL_TEMPLATE_RESULT (NODE))) -/* Nonzero if NODE which declares a type. */ +/* Nonzero for a NODE which declares a type. */ #define DECL_DECLARES_TYPE_P(NODE) \ (TREE_CODE (NODE) == TYPE_DECL || DECL_CLASS_TEMPLATE_P (NODE))