Title: [182222] trunk/Source/WTF
Revision
182222
Author
a...@apple.com
Date
2015-03-31 23:18:30 -0700 (Tue, 31 Mar 2015)

Log Message

Fix the build after <http://trac.webkit.org/changeset/182205>.

* wtf/text/StringImpl.h: (WTF::StringImpl::extractFoldedStringInSymbol):
A function cannot be both exported and inline.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (182221 => 182222)


--- trunk/Source/WTF/ChangeLog	2015-04-01 06:16:48 UTC (rev 182221)
+++ trunk/Source/WTF/ChangeLog	2015-04-01 06:18:30 UTC (rev 182222)
@@ -1,3 +1,10 @@
+2015-03-31  Alexey Proskuryakov  <a...@apple.com>
+
+        Fix the build after <http://trac.webkit.org/changeset/182205>.
+
+        * wtf/text/StringImpl.h: (WTF::StringImpl::extractFoldedStringInSymbol):
+        A function cannot be both exported and inline.
+
 2015-03-31  Yusuke Suzuki  <utatane....@gmail.com>
 
         Clean up Identifier factories to clarify the meaning of StringImpl*

Modified: trunk/Source/WTF/wtf/text/StringImpl.h (182221 => 182222)


--- trunk/Source/WTF/wtf/text/StringImpl.h	2015-04-01 06:16:48 UTC (rev 182221)
+++ trunk/Source/WTF/wtf/text/StringImpl.h	2015-04-01 06:18:30 UTC (rev 182222)
@@ -741,7 +741,7 @@
 
     WTF_EXPORT_STRING_API static const UChar latin1CaseFoldTable[256];
 
-    WTF_EXPORT_STRING_API StringImpl& extractFoldedStringInSymbol()
+    StringImpl& extractFoldedStringInSymbol()
     {
         ASSERT(length());
         ASSERT(isSymbol());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to