Title: [176877] trunk/Source/WebCore
Revision
176877
Author
[email protected]
Date
2014-12-05 15:01:56 -0800 (Fri, 05 Dec 2014)

Log Message

Fix build on Windows.

* page/SessionIDHash.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (176876 => 176877)


--- trunk/Source/WebCore/ChangeLog	2014-12-05 23:00:58 UTC (rev 176876)
+++ trunk/Source/WebCore/ChangeLog	2014-12-05 23:01:56 UTC (rev 176877)
@@ -1,3 +1,9 @@
+2014-12-05  Anders Carlsson  <[email protected]>
+
+        Fix build on Windows.
+
+        * page/SessionIDHash.h:
+
 2014-12-05  Zalan Bujtas  <[email protected]>
 
         Issue repaint at setUnavailablePluginIndicatorIsHidden() only when embedded object's indicator status changes.

Modified: trunk/Source/WebCore/page/SessionIDHash.h (176876 => 176877)


--- trunk/Source/WebCore/page/SessionIDHash.h	2014-12-05 23:00:58 UTC (rev 176876)
+++ trunk/Source/WebCore/page/SessionIDHash.h	2014-12-05 23:01:56 UTC (rev 176877)
@@ -39,7 +39,7 @@
     static const bool safeToCompareToEmptyOrDeleted = true;
 };
 template<> struct HashTraits<WebCore::SessionID> : GenericHashTraits<WebCore::SessionID> {
-    static const uint64_t deletedValueIdentifier = std::numeric_limits<uint64_t>::max();
+    static const uint64_t deletedValueIdentifier = 0xffffffffffffffff;
     static const bool needsDestruction = false;
     static WebCore::SessionID emptyValue() { return WebCore::SessionID::emptySessionID(); }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to