From: Mark Mitchell Date: Mon, 2 Aug 1999 06:19:31 +0000 (+0000) Subject: * call.c (build_conditional_expr): Fix typo in comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09dd27d41736334d78a46c06b3fe12cbc19335b6;p=gcc.git * call.c (build_conditional_expr): Fix typo in comment. From-SVN: r28391 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b70b803e9f5..829120f4d63 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +1999-08-01 Mark Mitchell + + * call.c (build_conditional_expr): Fix typo in comment. + 1999-08-01 Bernd Schmidt * decl.c (finish_stmt): Don't declare and test cond_stack, loop_stack, diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 6f17fba6d41..4ab496888fc 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -2754,8 +2754,8 @@ build_conditional_expr (arg1, arg2, arg3) /* As a G++ extension, the second argument to the conditional can be omitted. (So that `a ? : c' is roughly equivalent to `a ? a : - c'.) If second operand is omitted, make sure it is calculated - only once. */ + c'.) If the second operand is omitted, make sure it is + calculated only once. */ if (!arg2) { if (pedantic)