summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/wtf/DecimalNumber.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/wtf/DecimalNumber.h')
-rw-r--r--Source/JavaScriptCore/wtf/DecimalNumber.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/wtf/DecimalNumber.h b/Source/JavaScriptCore/wtf/DecimalNumber.h
index ac7b80058..61effcdd3 100644
--- a/Source/JavaScriptCore/wtf/DecimalNumber.h
+++ b/Source/JavaScriptCore/wtf/DecimalNumber.h
@@ -81,11 +81,11 @@ public:
ASSERT(m_significand[0] != '0' || !m_exponent);
}
- unsigned bufferLengthForStringDecimal() const;
- unsigned bufferLengthForStringExponential() const;
+ WTF_EXPORT_PRIVATE unsigned bufferLengthForStringDecimal() const;
+ WTF_EXPORT_PRIVATE unsigned bufferLengthForStringExponential() const;
- unsigned toStringDecimal(UChar* buffer, unsigned bufferLength) const;
- unsigned toStringExponential(UChar* buffer, unsigned bufferLength) const;
+ WTF_EXPORT_PRIVATE unsigned toStringDecimal(UChar* buffer, unsigned bufferLength) const;
+ WTF_EXPORT_PRIVATE unsigned toStringExponential(UChar* buffer, unsigned bufferLength) const;
bool sign() const { return m_sign; }
int exponent() const { return m_exponent; }