Changeset 106143 in webkit


Ignore:
Timestamp:
Jan 27, 2012 12:53:27 PM (12 years ago)
Author:
morrita@google.com
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.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r106118 r106143  
     12012-01-27  MORITA Hajime  <morrita@google.com>
     2
     3        [WTF] WTFString.h has some extra JS_EXPORT_PRIVATEs
     4        https://bugs.webkit.org/show_bug.cgi?id=77113
     5
     6        Reviewed by Darin Adler.
     7
     8        * wtf/text/WTFString.h: Removed some WTF_EXPORT_PRIVATE attributes which we don't need to export.
     9
    1102012-01-27  Zeno Albisser  <zeno@webkit.org>
    211
  • trunk/Source/JavaScriptCore/wtf/text/WTFString.h

    r104900 r106143  
    6363// Declarations of string operations
    6464
    65 WTF_EXPORT_PRIVATE int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
     65int charactersToIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
    6666WTF_EXPORT_PRIVATE int charactersToIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
    67 WTF_EXPORT_PRIVATE unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
     67unsigned charactersToUIntStrict(const LChar*, size_t, bool* ok = 0, int base = 10);
    6868WTF_EXPORT_PRIVATE unsigned charactersToUIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
    6969int64_t charactersToInt64Strict(const LChar*, size_t, bool* ok = 0, int base = 10);
     
    8585intptr_t charactersToIntPtr(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
    8686
    87 WTF_EXPORT_PRIVATE double charactersToDouble(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
     87double charactersToDouble(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
    8888WTF_EXPORT_PRIVATE double charactersToDouble(const UChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
    8989float charactersToFloat(const LChar*, size_t, bool* ok = 0, bool* didReadNumber = 0);
     
    188188    }
    189189
    190     WTF_EXPORT_PRIVATE static String number(short);
     190    static String number(short);
    191191    WTF_EXPORT_PRIVATE static String number(unsigned short);
    192192    WTF_EXPORT_PRIVATE static String number(int);
     
    302302    WTF_EXPORT_PRIVATE unsigned toUIntStrict(bool* ok = 0, int base = 10) const;
    303303    WTF_EXPORT_PRIVATE int64_t toInt64Strict(bool* ok = 0, int base = 10) const;
    304     WTF_EXPORT_PRIVATE uint64_t toUInt64Strict(bool* ok = 0, int base = 10) const;
    305     WTF_EXPORT_PRIVATE intptr_t toIntPtrStrict(bool* ok = 0, int base = 10) const;
     304    uint64_t toUInt64Strict(bool* ok = 0, int base = 10) const;
     305    intptr_t toIntPtrStrict(bool* ok = 0, int base = 10) const;
    306306
    307307    WTF_EXPORT_PRIVATE int toInt(bool* ok = 0) const;
Note: See TracChangeset for help on using the changeset viewer.