Changeset 13719 in webkit for trunk/JavaScriptCore/kxmlcore/HashSet.h
- Timestamp:
- Apr 6, 2006, 12:02:00 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/HashSet.h
r13703 r13719 275 275 if (it.m_impl == m_impl.end()) 276 276 return; 277 it->~ValueType(); 277 // Use "(*it)." instead of "it->" to work around a problem seen with the Visual C++ compiler. 278 (*it).~ValueType(); 278 279 m_impl.remove(it.m_impl); 279 280 }
Note:
See TracChangeset
for help on using the changeset viewer.