Ignore:
Timestamp:
Apr 11, 2006, 9:07:52 PM (19 years ago)
Author:
darin
Message:

JavaScriptCore:

  • try to fix Windows build -- HashForward.h was not working
  • kxmlcore/HashForward.h: Removed.
  • JavaScriptCore.xcodeproj/project.pbxproj: Remove HashForward.h.
  • kjs/collector.h: Remove use of HashForward.h.
  • kxmlcore/HashCountedSet.h: Remove include of HashForward.h, restore default arguments.
  • kxmlcore/HashMap.h: Ditto.
  • kxmlcore/HashSet.h: Ditto.

JavaScriptGlue:

  • try to fix Windows build
  • kxmlcore/HashForward.h: Removed.

WebCore:

  • try to fix Windows build
  • ForwardingHeaders/kxmlcore/HashForward.h: Removed.
  • dom/xml_tokenizer.h: Include another header instead of HashForward.h.
  • loader/Cache.h: Ditto.
  • page/Page.h: Ditto.
  • platform/TransferJob.h: Ditto.
File:
1 edited

Legend:

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

    r13821 r13830  
    2929namespace KXMLCore {
    3030
    31     template<typename Value, typename HashFunctions, typename Traits> class HashCountedSet {
     31    template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
     32        typename Traits = HashTraits<Value> > class HashCountedSet {
    3233    private:
    3334        typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
Note: See TracChangeset for help on using the changeset viewer.