Title: [208671] trunk/Source/WebCore
Revision
208671
Author
[email protected]
Date
2016-11-13 12:36:40 -0800 (Sun, 13 Nov 2016)

Log Message

Try to fix building with newer versions of clang.

* page/FrameView.h: Don’t export an inline function.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208670 => 208671)


--- trunk/Source/WebCore/ChangeLog	2016-11-13 19:28:36 UTC (rev 208670)
+++ trunk/Source/WebCore/ChangeLog	2016-11-13 20:36:40 UTC (rev 208671)
@@ -1,3 +1,9 @@
+2016-11-13  Dan Bernstein  <[email protected]>
+
+        Try to fix building with newer versions of clang.
+
+        * page/FrameView.h: Don’t export an inline function.
+
 2016-11-13  Darin Adler  <[email protected]>
 
         Move crypto code from ExceptionCode to ExceptionOr

Modified: trunk/Source/WebCore/page/FrameView.h (208670 => 208671)


--- trunk/Source/WebCore/page/FrameView.h	2016-11-13 19:28:36 UTC (rev 208670)
+++ trunk/Source/WebCore/page/FrameView.h	2016-11-13 20:36:40 UTC (rev 208671)
@@ -131,7 +131,7 @@
 
     WEBCORE_EXPORT bool renderedCharactersExceed(unsigned threshold);
 
-    WEBCORE_EXPORT void setViewportIsStable(bool stable) { m_viewportIsStable = stable; }
+    void setViewportIsStable(bool stable) { m_viewportIsStable = stable; }
     bool viewportIsStable() const { return m_viewportIsStable; }
 
 #if PLATFORM(IOS)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to