[Webkit-unassigned] [Bug 27543] Add platform/wince/ files for WINCE port

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 12 09:33:42 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=27543


Darin Adler <darin at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |darin at apple.com




--- Comment #50 from Darin Adler <darin at apple.com>  2009-08-12 09:33:40 PDT ---
(In reply to comment #49)
> I think standard for your for(;;) is really to do:
> 
> do {
> } while (0);

for(;;) is an infinite loop. The above is not an infinite loop, it's a one time
loop, so it can't be used. For infinite loops, the most common pattern in
WebKit is while (true).

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list