Title: [208756] trunk/Source/WebCore
Revision
208756
Author
[email protected]
Date
2016-11-15 14:16:01 -0800 (Tue, 15 Nov 2016)

Log Message

Unreviewed, fix build after r208710.

Inline functions should not be marked as WEBCORE_EXPORT.

* dom/QualifiedName.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208755 => 208756)


--- trunk/Source/WebCore/ChangeLog	2016-11-15 22:12:50 UTC (rev 208755)
+++ trunk/Source/WebCore/ChangeLog	2016-11-15 22:16:01 UTC (rev 208756)
@@ -1,3 +1,11 @@
+2016-11-15  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix build after r208710.
+
+        Inline functions should not be marked as WEBCORE_EXPORT.
+
+        * dom/QualifiedName.h:
+
 2016-11-15  Brent Fulgham  <[email protected]>
 
         strncpy may leave unterminated string in WebCore::URL::init

Modified: trunk/Source/WebCore/dom/QualifiedName.h (208755 => 208756)


--- trunk/Source/WebCore/dom/QualifiedName.h	2016-11-15 22:12:50 UTC (rev 208755)
+++ trunk/Source/WebCore/dom/QualifiedName.h	2016-11-15 22:16:01 UTC (rev 208756)
@@ -91,7 +91,7 @@
     // Uppercased localName, cached for efficiency
     const AtomicString& localNameUpper() const;
 
-    WEBCORE_EXPORT String toString() const;
+    String toString() const;
 
     QualifiedNameImpl* impl() const { return m_impl.get(); }
 #if ENABLE(JIT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to