Title: [216796] trunk/Source/WTF
Revision
216796
Author
commit-qu...@webkit.org
Date
2017-05-12 15:05:24 -0700 (Fri, 12 May 2017)

Log Message

Include algorithm before using std::min
https://bugs.webkit.org/show_bug.cgi?id=171733

Patch by Ting-Wei Lan <lant...@gmail.com> on 2017-05-12
Reviewed by Chris Dumez.

* wtf/text/StringCommon.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (216795 => 216796)


--- trunk/Source/WTF/ChangeLog	2017-05-12 22:02:11 UTC (rev 216795)
+++ trunk/Source/WTF/ChangeLog	2017-05-12 22:05:24 UTC (rev 216796)
@@ -1,3 +1,12 @@
+2017-05-12  Ting-Wei Lan  <lant...@gmail.com>
+
+        Include algorithm before using std::min
+        https://bugs.webkit.org/show_bug.cgi?id=171733
+
+        Reviewed by Chris Dumez.
+
+        * wtf/text/StringCommon.h:
+
 2017-05-12  Andreas Kling  <akl...@apple.com>
 
         More aggressive memory kill limits.

Modified: trunk/Source/WTF/wtf/text/StringCommon.h (216795 => 216796)


--- trunk/Source/WTF/wtf/text/StringCommon.h	2017-05-12 22:02:11 UTC (rev 216795)
+++ trunk/Source/WTF/wtf/text/StringCommon.h	2017-05-12 22:05:24 UTC (rev 216796)
@@ -26,6 +26,7 @@
 #ifndef StringCommon_h
 #define StringCommon_h
 
+#include <algorithm>
 #include <unicode/uchar.h>
 #include <wtf/ASCIICType.h>
 #include <wtf/NotFound.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to