[Webkit-unassigned] [Bug 13227] In StringImpl::isLower, '&' used with ints is not very kosher

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 9 15:47:22 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=13227





------- Comment #4 from darin at apple.com  2007-04-09 15:47 PDT -------
(In reply to comment #3)
> An alternative to 
>   allLower &= islower(c & 0x7F) != 0;
> would be
>   allLower = allLower && islower(c & 0x7F);
> if that's faster.

No, that's way slower.


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



More information about the webkit-unassigned mailing list