Title: [206601] trunk/Source/WTF
Revision
206601
Author
mark....@apple.com
Date
2016-09-29 12:17:03 -0700 (Thu, 29 Sep 2016)

Log Message

Re-enable StringView life-cycle checking.
https://bugs.webkit.org/show_bug.cgi?id=160384
<rdar://problem/28479434>

Reviewed by Saam Barati.

Re-landing after slow running tests have been resolved.

* wtf/text/StringView.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (206600 => 206601)


--- trunk/Source/WTF/ChangeLog	2016-09-29 19:11:05 UTC (rev 206600)
+++ trunk/Source/WTF/ChangeLog	2016-09-29 19:17:03 UTC (rev 206601)
@@ -1,3 +1,15 @@
+2016-09-29  Mark Lam  <mark....@apple.com>
+
+        Re-enable StringView life-cycle checking.
+        https://bugs.webkit.org/show_bug.cgi?id=160384
+        <rdar://problem/28479434>
+
+        Reviewed by Saam Barati.
+
+        Re-landing after slow running tests have been resolved.
+
+        * wtf/text/StringView.h:
+
 2016-09-29  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r206563.

Modified: trunk/Source/WTF/wtf/text/StringView.h (206600 => 206601)


--- trunk/Source/WTF/wtf/text/StringView.h	2016-09-29 19:11:05 UTC (rev 206600)
+++ trunk/Source/WTF/wtf/text/StringView.h	2016-09-29 19:17:03 UTC (rev 206601)
@@ -36,8 +36,7 @@
 #include <wtf/text/StringCommon.h>
 
 // FIXME: Enabling the StringView lifetime checking causes the MSVC build to fail. Figure out why.
-// FIXME: Enable StringView lifetime checking once the underlying assertions have been fixed.
-#if defined(NDEBUG) || COMPILER(MSVC) || 1
+#if defined(NDEBUG) || COMPILER(MSVC)
 #define CHECK_STRINGVIEW_LIFETIME 0
 #else
 #define CHECK_STRINGVIEW_LIFETIME 1
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to