Title: [112152] trunk/Source/_javascript_Core
Revision
112152
Author
[email protected]
Date
2012-03-26 15:04:22 -0700 (Mon, 26 Mar 2012)

Log Message

Tried to fix the Windows build.

* yarr/YarrPattern.cpp:
(JSC::Yarr::CharacterClassConstructor::putRange):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (112151 => 112152)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-26 21:59:54 UTC (rev 112151)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-26 22:04:22 UTC (rev 112152)
@@ -1,3 +1,10 @@
+2012-03-26  Dan Bernstein  <[email protected]>
+
+        Tried to fix the Windows build.
+
+        * yarr/YarrPattern.cpp:
+        (JSC::Yarr::CharacterClassConstructor::putRange):
+
 2012-03-26  Gavin Barraclough  <[email protected]>
 
         Unreviewed - speculative Windows build fix.

Modified: trunk/Source/_javascript_Core/yarr/YarrPattern.cpp (112151 => 112152)


--- trunk/Source/_javascript_Core/yarr/YarrPattern.cpp	2012-03-26 21:59:54 UTC (rev 112151)
+++ trunk/Source/_javascript_Core/yarr/YarrPattern.cpp	2012-03-26 22:04:22 UTC (rev 112152)
@@ -132,7 +132,7 @@
         UCS2CanonicalizationRange* info = rangeInfoFor(lo);
         while (true) {
             // Handle the range [lo .. end]
-            UChar end = std::min(info->end, hi);
+            UChar end = std::min<UChar>(info->end, hi);
 
             switch (info->type) {
             case CanonicalizeUnique:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to