diff --git a/js/public/HashTable.h b/js/public/HashTable.h index 9b0d32d87d51..bfad076f6e5a 100644 --- a/js/public/HashTable.h +++ b/js/public/HashTable.h @@ -575,6 +575,19 @@ struct DefaultHasher } }; +template <> +struct DefaultHasher +{ + typedef float Lookup; + static HashNumber hash(float f) { + JS_STATIC_ASSERT(sizeof(HashNumber) == 4); + return HashNumber(mozilla::BitwiseCast(f)); + } + static bool match(float lhs, float rhs) { + return mozilla::BitwiseCast(lhs) == mozilla::BitwiseCast(rhs); + } +}; + /*****************************************************************************/ // Both HashMap and HashSet are implemented by a single HashTable that is even