Title: [228324] trunk/Source/bmalloc
Revision
228324
Author
clo...@igalia.com
Date
2018-02-09 10:03:02 -0800 (Fri, 09 Feb 2018)

Log Message

Improve of string.h include after r228317.
https://bugs.webkit.org/show_bug.cgi?id=182642

Reviewed by Mark Lam.

* bmalloc/Algorithm.h: Avoid an architecture-specific #include.

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (228323 => 228324)


--- trunk/Source/bmalloc/ChangeLog	2018-02-09 17:32:57 UTC (rev 228323)
+++ trunk/Source/bmalloc/ChangeLog	2018-02-09 18:03:02 UTC (rev 228324)
@@ -1,5 +1,14 @@
 2018-02-09  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
+        Improve of string.h include after r228317.
+        https://bugs.webkit.org/show_bug.cgi?id=182642
+
+        Reviewed by Mark Lam.
+
+        * bmalloc/Algorithm.h: Avoid an architecture-specific #include.
+
+2018-02-09  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
         Fix build for !BCPU(X86_64) after r228306
         https://bugs.webkit.org/show_bug.cgi?id=182563
 

Modified: trunk/Source/bmalloc/bmalloc/Algorithm.h (228323 => 228324)


--- trunk/Source/bmalloc/bmalloc/Algorithm.h	2018-02-09 17:32:57 UTC (rev 228323)
+++ trunk/Source/bmalloc/bmalloc/Algorithm.h	2018-02-09 18:03:02 UTC (rev 228324)
@@ -31,13 +31,10 @@
 #include <cstdint>
 #include <cstddef>
 #include <limits>
+#include <string.h>
 #include <type_traits>
 #include <chrono>
 
-#if !BCPU(X86_64)
-#include <string.h>
-#endif
-
 namespace bmalloc {
 
 // Versions of min and max that are compatible with compile-time constants.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to