diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-02-07 15:34:20 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-02-07 15:34:20 -0500 |
commit | f4a4b6690e669a9ba351e6fba06cf757349a9cf8 (patch) | |
tree | 5dd3d8dfac214dc8c67491eb9a793f8fdf79bf1e /gcc | |
parent | 981cb4378aacbf1d6645e9397f8c412dab51f425 (diff) | |
download | gcc-f4a4b6690e669a9ba351e6fba06cf757349a9cf8.zip gcc-f4a4b6690e669a9ba351e6fba06cf757349a9cf8.tar.gz gcc-f4a4b6690e669a9ba351e6fba06cf757349a9cf8.tar.bz2 |
tweak wording
From-SVN: r31835
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/spew.c | 4 | ||||
-rw-r--r-- | gcc/cp/typeck2.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/spew.c b/gcc/cp/spew.c index 8d95be6..1fd6eb9 100644 --- a/gcc/cp/spew.c +++ b/gcc/cp/spew.c @@ -301,8 +301,8 @@ yylex () case PTYPENAME: lastiddecl = trrr; - /* If this got special lookup, remember it. In these cases, - we don't have to worry about being a declarator-id. */ + /* If this got special lookup, remember it. In these + cases, we know it can't be a declarator-id. */ if (got_scope || got_object) tmp_token.yylval.ttype = trrr; break; diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c index f49398b..6f35b36 100644 --- a/gcc/cp/typeck2.c +++ b/gcc/cp/typeck2.c @@ -1462,7 +1462,7 @@ check_for_new_type (string, inptree) { if (inptree.new_type_flag && (pedantic || strcmp (string, "cast") != 0)) - pedwarn ("ISO C++ forbids defining types within %s",string); + pedwarn ("ISO C++ forbids defining types within %s", string); } /* Add new exception specifier SPEC, to the LIST we currently have. |