Title: [253445] trunk/Source/WebCore
Revision
253445
Author
[email protected]
Date
2019-12-12 15:09:48 -0800 (Thu, 12 Dec 2019)

Log Message

REGRESSION (r172814): Don't export inline SQLiteDatabase::disableThreadingChecks() method
<https://webkit.org/b/205140>

Reviewed by Alex Christensen.

* platform/sql/SQLiteDatabase.h:
(WebCore::SQLiteDatabase::disableThreadingChecks):
Remove WEBCORE_EXPORT macro from inline method. This only seems
to occur on Release builds with compiler optimizations disabled.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (253444 => 253445)


--- trunk/Source/WebCore/ChangeLog	2019-12-12 21:46:51 UTC (rev 253444)
+++ trunk/Source/WebCore/ChangeLog	2019-12-12 23:09:48 UTC (rev 253445)
@@ -1,3 +1,15 @@
+2019-12-12  David Kilzer  <[email protected]>
+
+        REGRESSION (r172814): Don't export inline SQLiteDatabase::disableThreadingChecks() method
+        <https://webkit.org/b/205140>
+
+        Reviewed by Alex Christensen.
+
+        * platform/sql/SQLiteDatabase.h:
+        (WebCore::SQLiteDatabase::disableThreadingChecks):
+        Remove WEBCORE_EXPORT macro from inline method. This only seems
+        to occur on Release builds with compiler optimizations disabled.
+
 2019-12-12  Yusuke Suzuki  <[email protected]>
 
         [JSC] Lock-down JSGlobalObject and derived classes in IsoSubspace

Modified: trunk/Source/WebCore/platform/sql/SQLiteDatabase.h (253444 => 253445)


--- trunk/Source/WebCore/platform/sql/SQLiteDatabase.h	2019-12-12 21:46:51 UTC (rev 253444)
+++ trunk/Source/WebCore/platform/sql/SQLiteDatabase.h	2019-12-12 23:09:48 UTC (rev 253445)
@@ -135,7 +135,7 @@
 #ifndef NDEBUG
     WEBCORE_EXPORT void disableThreadingChecks();
 #else
-    WEBCORE_EXPORT void disableThreadingChecks() {}
+    void disableThreadingChecks() { }
 #endif
 
     WEBCORE_EXPORT static void setIsDatabaseOpeningForbidden(bool);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to