Title: [222459] trunk/Source/WebCore
Revision
222459
Author
[email protected]
Date
2017-09-25 13:06:12 -0700 (Mon, 25 Sep 2017)

Log Message

Building release with -DLOG_DISABLED=0 fails
https://bugs.webkit.org/show_bug.cgi?id=177441

Reviewed by Michael Catanzaro.

No new tests, it is a build fix.

* Modules/indexeddb/IDBKeyPath.cpp:
* Modules/indexeddb/IDBKeyPath.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (222458 => 222459)


--- trunk/Source/WebCore/ChangeLog	2017-09-25 19:55:31 UTC (rev 222458)
+++ trunk/Source/WebCore/ChangeLog	2017-09-25 20:06:12 UTC (rev 222459)
@@ -1,3 +1,15 @@
+2017-09-25  Carlos Alberto Lopez Perez  <[email protected]>
+
+        Building release with -DLOG_DISABLED=0 fails
+        https://bugs.webkit.org/show_bug.cgi?id=177441
+
+        Reviewed by Michael Catanzaro.
+
+        No new tests, it is a build fix.
+
+        * Modules/indexeddb/IDBKeyPath.cpp:
+        * Modules/indexeddb/IDBKeyPath.h:
+
 2017-09-25  Brent Fulgham  <[email protected]>
 
         Switch back to partitioning (rather than blocking) prevalent origins without interaction

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.cpp (222458 => 222459)


--- trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.cpp	2017-09-25 19:55:31 UTC (rev 222458)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.cpp	2017-09-25 20:06:12 UTC (rev 222459)
@@ -223,7 +223,7 @@
     return WTF::visit(visitor, keyPath);
 }
 
-#ifndef NDEBUG
+#if !LOG_DISABLED
 String loggingString(const IDBKeyPath& path)
 {
     auto visitor = WTF::makeVisitor([](const String& string) {

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.h (222458 => 222459)


--- trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.h	2017-09-25 19:55:31 UTC (rev 222458)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBKeyPath.h	2017-09-25 20:06:12 UTC (rev 222459)
@@ -53,7 +53,7 @@
     return isolatedCopy(variant.value());
 }
 
-#ifndef NDEBUG
+#if !LOG_DISABLED
 String loggingString(const IDBKeyPath&);
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to