WebKit Bugzilla
Attachment 369796 Details for
Bug 197857
: IndexSet::isEmpty should use BitVector::isEmpty() instead of size()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
patch197857 (text/plain), 972 bytes, created by
Robin Morisset
on 2019-05-13 15:49:38 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Robin Morisset
Created:
2019-05-13 15:49:38 PDT
Size:
972 bytes
patch
obsolete
>Index: Source/WTF/ChangeLog >=================================================================== >--- Source/WTF/ChangeLog (revision 245260) >+++ Source/WTF/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2019-05-13 Robin Morisset <rmorisset@apple.com> >+ >+ IndexSet::isEmpty should use BitVector::isEmpty() instead of size() >+ https://bugs.webkit.org/show_bug.cgi?id=197857 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * wtf/IndexSet.h: >+ (WTF::IndexSet::isEmpty const): >+ > 2019-05-13 Yusuke Suzuki <ysuzuki@apple.com> > > [WTF] Remove Threading workaround for support libraries in Windows >Index: Source/WTF/wtf/IndexSet.h >=================================================================== >--- Source/WTF/wtf/IndexSet.h (revision 245195) >+++ Source/WTF/wtf/IndexSet.h (working copy) >@@ -76,7 +76,7 @@ > > bool isEmpty() const > { >- return !size(); >+ return m_set.isEmpty(); > } > > template<typename CollectionType>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197857
: 369796