Ignore:
Timestamp:
Apr 6, 2006, 12:02:00 AM (19 years ago)
Author:
darin
Message:
  • attempt to fix Windows build
  • kxmlcore/HashMap.h: (KXMLCore::HashMap::remove): Use (*it). instead of it->.
  • kxmlcore/HashSet.h: (KXMLCore::HashSet::remove): Ditto.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kxmlcore/HashSet.h

    r13703 r13719  
    275275        if (it.m_impl == m_impl.end())
    276276            return;
    277         it->~ValueType();
     277        // Use "(*it)." instead of "it->" to work around a problem seen with the Visual C++ compiler.
     278        (*it).~ValueType();
    278279        m_impl.remove(it.m_impl);
    279280    }
Note: See TracChangeset for help on using the changeset viewer.