jed-users mailing list

[2006 Date Index] [2006 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

RE: Looking for C/C++ (and S-Lang) programmers for testing


Servus Günter,

Thus far, the only other reported problems seem to be the following two
constructs, which I personally never use:
{
    if ( expr1
	  || expr2 )
    foo();  /* WRONG */

    if ( expr1 || expr2 )
	foo();  /* OKAY */

    if ( expr1
	  || expr2
       )
	foo();  /* OKAY */
    
    if (expr)
    (void) foo();  /* WRONG */

    if (expr) {
	(void) foo();  /* OKAY */
    }    
}
 
It anyone else has time to look at these, I would be very thankful.
It looks like I'll be swamped with other work until New Year's.

/mark

This e-mail message and any attachments may contain legally privileged, confidential or proprietary Information, or information otherwise protected by law of ArvinMeritor, Inc., its affiliates, or third parties. This notice serves as marking of its ?Confidential? status as defined in any confidentiality agreements concerning the sender and recipient. If you are not the intended recipient(s), or the employee or agent responsible for delivery of this message to the intended recipient(s), you are hereby notified that any dissemination, distribution or copying of this e-mail message is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete this e-mail message from your computer.




--------------------------
To unsubscribe send email to <jed-users-request@xxxxxxxxxxx> with
the word "unsubscribe" in the message body.
Need help? Email <jed-users-owner@xxxxxxxxxxx>.


[2006 date index] [2006 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]