RFR-8008118

Christos Zoulas christos at zoulas.com
Thu Mar 21 18:00:06 UTC 2013


On Mar 21, 10:10am, martinrb at google.com (Martin Buchholz) wrote:
-- Subject: Re: RFR-8008118

| Please revert this formatting change:
| 
| -        for (q = p; (*q != ':') && (*q != '\0'); q++)
| -            ;
| +        for (q = p; (*q != ':') && (*q != '\0'); q++);
| +
| 

Stylistically I prefer:

	    for (q = p; (*q != ':') && (*q != '\0'); q++)
		    continue;

so that re-formatting accidents don't happen, and the intent is clearly
communicated.

christos



More information about the core-libs-dev mailing list