Title: [106143] trunk/Source/_javascript_Core
Revision
106143
Author
[email protected]
Date
2012-01-27 12:53:27 -0800 (Fri, 27 Jan 2012)

Log Message

[WTF] WTFString.h has some extra JS_EXPORT_PRIVATEs
https://bugs.webkit.org/show_bug.cgi?id=77113

Reviewed by Darin Adler.

* wtf/text/WTFString.h: Removed some WTF_EXPORT_PRIVATE attributes which we don't need to export.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (106142 => 106143)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-27 20:15:20 UTC (rev 106142)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-27 20:53:27 UTC (rev 106143)
@@ -1,3 +1,12 @@
+2012-01-27  MORITA Hajime  <[email protected]>
+
+        [WTF] WTFString.h has some extra JS_EXPORT_PRIVATEs
+        https://bugs.webkit.org/show_bug.cgi?id=77113
+
+        Reviewed by Darin Adler.
+
+        * wtf/text/WTFString.h: Removed some WTF_EXPORT_PRIVATE attributes which we don't need to export.
+
 2012-01-27  Zeno Albisser  <[email protected]>
 
         [Qt][Mac] Build fails after adding ICU support (r105997).

Modified: trunk/Source/_javascript_Core/wtf/text/WTFString.h (106142 => 106143)


--- trunk/Source/_javascript_Core/wtf/text/WTFString.h	2012-01-27 20:15:20 UTC (rev 106142)
+++ trunk/Source/_javascript_Core/wtf/text/WTFString.h	2012-01-27 20:53:27 UTC (rev 106143)
@@ -62,9 +62,9 @@
 
 // Declarations of string operations
 
-WTF_EXPORT_PRIVATE int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
+int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
 WTF_EXPORT_PRIVATE int charactersToIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
-WTF_EXPORT_PRIVATE unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
+unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
 WTF_EXPORT_PRIVATE unsigned charactersToUIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
 int64_t charactersToInt64Strict(const LChar*, size_t, bool* ok = 0, int base = 10);
 int64_t charactersToInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 10);
@@ -84,7 +84,7 @@
 intptr_t charactersToIntPtr(const LChar*, size_t, bool* ok = 0); // ignores trailing garbage
 intptr_t charactersToIntPtr(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
 
-WTF_EXPORT_PRIVATE double charactersToDouble(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
+double charactersToDouble(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
 WTF_EXPORT_PRIVATE double charactersToDouble(const UChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
 float charactersToFloat(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
 WTF_EXPORT_PRIVATE float charactersToFloat(const UChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
@@ -187,7 +187,7 @@
         return m_impl->characters()[index];
     }
 
-    WTF_EXPORT_PRIVATE static String number(short);
+    static String number(short);
     WTF_EXPORT_PRIVATE static String number(unsigned short);
     WTF_EXPORT_PRIVATE static String number(int);
     WTF_EXPORT_PRIVATE static String number(unsigned);
@@ -301,8 +301,8 @@
     WTF_EXPORT_PRIVATE int toIntStrict(bool* ok = 0, int base = 10) const;
     WTF_EXPORT_PRIVATE unsigned toUIntStrict(bool* ok = 0, int base = 10) const;
     WTF_EXPORT_PRIVATE int64_t toInt64Strict(bool* ok = 0, int base = 10) const;
-    WTF_EXPORT_PRIVATE uint64_t toUInt64Strict(bool* ok = 0, int base = 10) const;
-    WTF_EXPORT_PRIVATE intptr_t toIntPtrStrict(bool* ok = 0, int base = 10) const;
+    uint64_t toUInt64Strict(bool* ok = 0, int base = 10) const;
+    intptr_t toIntPtrStrict(bool* ok = 0, int base = 10) const;
 
     WTF_EXPORT_PRIVATE int toInt(bool* ok = 0) const;
     WTF_EXPORT_PRIVATE unsigned toUInt(bool* ok = 0) const;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to