* cppexp.c (_cpp_parse_expr): Don't use unary plus.

From-SVN: r34934
This commit is contained in:
Zack Weinberg 2000-07-09 20:44:51 +00:00 committed by Zack Weinberg
parent 91fcd1584b
commit 66267cdb85
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-07-09 Zack Weinberg <zack@wolery.cumb.org>
* cppexp.c (_cpp_parse_expr): Don't use unary plus.
2000-07-09 Neil Booth <NeilB@earthling.net>
* cpphash.h: ISvspace, is_vspace, is_nvspace: New.

View File

@ -842,7 +842,7 @@ _cpp_parse_expr (pfile)
case CPP_PLUS:
if (!(top->flags & HAVE_VALUE))
{
UNARY(+);
UNARY(/* + */); /* K+R C doesn't like unary + */
}
else
{