Previously, it was only taking the n interval, and the start index.
<rdar://problem/63643324>
Created attachment 400279 [details] proposed patch.
Comment on attachment 400279 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=400279&action=review r=me > Source/WTF/wtf/Bitmap.h:436 > + ASSERT(start <= end && end <= bitmapSize); The first ASSERT is redundant, and I would split the other ASSERT into two for better error messages.
Comment on attachment 400279 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=400279&action=review >> Source/WTF/wtf/Bitmap.h:436 >> + ASSERT(start <= end && end <= bitmapSize); > > The first ASSERT is redundant, and I would split the other ASSERT into two for better error messages. Will fix.
Thanks for the review. Landed in r262167: <http://trac.webkit.org/r262167>.