Changeset 245271 in webkit
- Timestamp:
- May 13, 2019, 8:38:13 PM (7 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
wtf/IndexSet.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r245269 r245271 1 2019-05-13 Robin Morisset <rmorisset@apple.com> 2 3 IndexSet::isEmpty should use BitVector::isEmpty() instead of size() 4 https://bugs.webkit.org/show_bug.cgi?id=197857 5 6 Reviewed by Darin Adler. 7 8 * wtf/IndexSet.h: 9 (WTF::IndexSet::isEmpty const): 10 1 11 2019-05-13 Youenn Fablet <youenn@apple.com> 2 12 -
trunk/Source/WTF/wtf/IndexSet.h
r214636 r245271 77 77 bool isEmpty() const 78 78 { 79 return !size();79 return m_set.isEmpty(); 80 80 } 81 81
Note:
See TracChangeset
for help on using the changeset viewer.