Title: [101054] trunk/Source/_javascript_Core
Revision
101054
Author
[email protected]
Date
2011-11-23 01:10:52 -0800 (Wed, 23 Nov 2011)

Log Message

WTF::String has extra WTF_EXPORT_PRIVATE
https://bugs.webkit.org/show_bug.cgi?id=72858

Patch by Hajime Morrita <[email protected]> on 2011-11-23
Reviewed by Kevin Ollivier.

* wtf/text/WTFString.h:
(WTF::String::String):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (101053 => 101054)


--- trunk/Source/_javascript_Core/ChangeLog	2011-11-23 09:09:56 UTC (rev 101053)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-11-23 09:10:52 UTC (rev 101054)
@@ -1,3 +1,13 @@
+2011-11-23  Hajime Morrita  <[email protected]>
+
+        WTF::String has extra WTF_EXPORT_PRIVATE
+        https://bugs.webkit.org/show_bug.cgi?id=72858
+
+        Reviewed by Kevin Ollivier.
+
+        * wtf/text/WTFString.h:
+        (WTF::String::String):
+
 2011-11-23  Raphael Kubo da Costa  <[email protected]>
 
         [CMake] Move the top-level logic to the top-level directory.

Modified: trunk/Source/_javascript_Core/wtf/text/WTFString.h (101053 => 101054)


--- trunk/Source/_javascript_Core/wtf/text/WTFString.h	2011-11-23 09:09:56 UTC (rev 101053)
+++ trunk/Source/_javascript_Core/wtf/text/WTFString.h	2011-11-23 09:10:52 UTC (rev 101054)
@@ -95,7 +95,7 @@
 class String {
 public:
     // Construct a null string, distinguishable from an empty string.
-    WTF_EXPORT_PRIVATE String() { }
+    String() { }
 
     // Construct a string with UTF-16 data.
     WTF_EXPORT_PRIVATE String(const UChar* characters, unsigned length);
@@ -117,9 +117,9 @@
     WTF_EXPORT_PRIVATE String(const char* characters);
 
     // Construct a string referencing an existing StringImpl.
-    WTF_EXPORT_PRIVATE String(StringImpl* impl) : m_impl(impl) { }
-    WTF_EXPORT_PRIVATE String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
-    WTF_EXPORT_PRIVATE String(RefPtr<StringImpl> impl) : m_impl(impl) { }
+    String(StringImpl* impl) : m_impl(impl) { }
+    String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
+    String(RefPtr<StringImpl> impl) : m_impl(impl) { }
 
     // Inline the destructor.
     ALWAYS_INLINE ~String() { }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to