On Mon, Mar 25, 2013 at 10:18:23PM -0700, Jiong WANG wrote:
>      8. promote variable evaluation in loop body, change code shape like:
> 
>       for (int i; i < XXX.size(); i++)  to
>       for (int i, int e = XXX.size(); i< e; i++)

Minor nit, but I think the pre-increment form is generally prefered in
C++ land.

Joerg
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to