Ignore:
Timestamp:
Mar 26, 2008, 12:26:26 PM (17 years ago)
Author:
[email protected]
Message:

2008-03-26 Maciej Stachowiak <[email protected]>

Reviewed by Darin.

  • wtf/HashFunctions.h: (WTF::):
  • wtf/HashTraits.h: (WTF::):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/HashFunctions.h

    r27176 r31325  
    104104    // make IntHash the default hash function for many integer types
    105105
     106    template<> struct DefaultHash<short> { typedef IntHash<unsigned> Hash; };
     107    template<> struct DefaultHash<unsigned short> { typedef IntHash<unsigned> Hash; };
    106108    template<> struct DefaultHash<int> { typedef IntHash<unsigned> Hash; };
    107109    template<> struct DefaultHash<unsigned> { typedef IntHash<unsigned> Hash; };
Note: See TracChangeset for help on using the changeset viewer.