* call.c (build_conditional_expr): Fix typo in comment.
authorMark Mitchell <mark@codesourcery.com>
Mon, 2 Aug 1999 06:19:31 +0000 (06:19 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Mon, 2 Aug 1999 06:19:31 +0000 (06:19 +0000)
From-SVN: r28391

gcc/cp/ChangeLog
gcc/cp/call.c

index b70b803e9f5e0cff52873a3807ff886a6da39519..829120f4d632eca1608a562bc2b854ce82589ad0 100644 (file)
@@ -1,3 +1,7 @@
+1999-08-01  Mark Mitchell  <mark@codesourcery.com>
+
+       * call.c (build_conditional_expr): Fix typo in comment.
+
 1999-08-01  Bernd Schmidt  <bernds@cygnus.co.uk>
 
        * decl.c (finish_stmt): Don't declare and test cond_stack, loop_stack,
index 6f17fba6d41128872b8ec4a2d2427b475cf2055b..4ab496888fc6be1e68bbb4e418ffd0d64ab904a2 100644 (file)
@@ -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)