Commit 66267cdb by Zack Weinberg Committed by Zack Weinberg

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

From-SVN: r34934
parent 91fcd158
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> 2000-07-09 Neil Booth <NeilB@earthling.net>
* cpphash.h: ISvspace, is_vspace, is_nvspace: New. * cpphash.h: ISvspace, is_vspace, is_nvspace: New.
......
...@@ -842,7 +842,7 @@ _cpp_parse_expr (pfile) ...@@ -842,7 +842,7 @@ _cpp_parse_expr (pfile)
case CPP_PLUS: case CPP_PLUS:
if (!(top->flags & HAVE_VALUE)) if (!(top->flags & HAVE_VALUE))
{ {
UNARY(+); UNARY(/* + */); /* K+R C doesn't like unary + */
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment