summaryrefslogtreecommitdiff
path: root/deps/v8/src/bignum-dtoa.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/bignum-dtoa.h')
-rw-r--r--deps/v8/src/bignum-dtoa.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/v8/src/bignum-dtoa.h b/deps/v8/src/bignum-dtoa.h
index dab27badba..ac94e651bf 100644
--- a/deps/v8/src/bignum-dtoa.h
+++ b/deps/v8/src/bignum-dtoa.h
@@ -52,8 +52,9 @@ enum BignumDtoaMode {
// Halfway cases are again rounded up.
// 'BignumDtoa' expects the given buffer to be big enough to hold all digits
// and a terminating null-character.
-void BignumDtoa(double v, BignumDtoaMode mode, int requested_digits,
- Vector<char> buffer, int* length, int* point);
+V8_EXPORT_PRIVATE void BignumDtoa(double v, BignumDtoaMode mode,
+ int requested_digits, Vector<char> buffer,
+ int* length, int* point);
} // namespace internal
} // namespace v8