]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - wtf/HashFunctions.h
JavaScriptCore-721.26.tar.gz
[apple/javascriptcore.git] / wtf / HashFunctions.h
index 13afb723df67eb595cfbd2a844ff4a52cebb5c74..2c66a2d9fbf3ce0f7719368f57cbb1557b01fc78 100644 (file)
@@ -173,9 +173,6 @@ namespace WTF {
     template<typename P> struct DefaultHash<RefPtr<P> > { typedef PtrHash<RefPtr<P> > Hash; };
 
     template<typename T, typename U> struct DefaultHash<std::pair<T, U> > { typedef PairHash<T, U> Hash; };
-    
-    // Golden ratio - arbitrary start value to avoid mapping all 0's to all 0's
-    static const unsigned stringHashingStartValue = 0x9e3779b9U;
 
 } // namespace WTF