Title: [159029] trunk/Source/WebCore
Revision
159029
Author
[email protected]
Date
2013-11-10 12:59:09 -0800 (Sun, 10 Nov 2013)

Log Message

Fix EFL build after r159027
https://bugs.webkit.org/show_bug.cgi?id=124127

Patch by Sergio Correia <[email protected]> on 2013-11-10
Reviewed by Anders Carlsson.

No new tests, build fix.

* page/Settings.in: Add std to numeric_limits, since we don't have
'using std' directives anymore.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (159028 => 159029)


--- trunk/Source/WebCore/ChangeLog	2013-11-10 19:50:07 UTC (rev 159028)
+++ trunk/Source/WebCore/ChangeLog	2013-11-10 20:59:09 UTC (rev 159029)
@@ -1,3 +1,15 @@
+2013-11-10  Sergio Correia  <[email protected]>
+
+        Fix EFL build after r159027
+        https://bugs.webkit.org/show_bug.cgi?id=124127
+
+        Reviewed by Anders Carlsson.
+
+        No new tests, build fix.
+
+        * page/Settings.in: Add std to numeric_limits, since we don't have
+        'using std' directives anymore.
+
 2013-11-10  Anders Carlsson  <[email protected]>
 
         Fix build.

Modified: trunk/Source/WebCore/page/Settings.in (159028 => 159029)


--- trunk/Source/WebCore/page/Settings.in	2013-11-10 19:50:07 UTC (rev 159028)
+++ trunk/Source/WebCore/page/Settings.in	2013-11-10 20:59:09 UTC (rev 159029)
@@ -25,7 +25,7 @@
 minimumAccelerated2dCanvasSize type=int, initial=257*256
 
 layoutFallbackWidth type=int, initial=980
-maximumDecodedImageSize type=size_t, initial=numeric_limits<size_t>::max()
+maximumDecodedImageSize type=size_t, initial=std::numeric_limits<size_t>::max()
 deviceWidth type=int, initial=0
 deviceHeight type=int, initial=0
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to