summaryrefslogtreecommitdiff
path: root/deps/v8/src/numbers/conversions.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/numbers/conversions.h')
-rw-r--r--deps/v8/src/numbers/conversions.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/src/numbers/conversions.h b/deps/v8/src/numbers/conversions.h
index e71f7ce5d0..fa90ee2a6e 100644
--- a/deps/v8/src/numbers/conversions.h
+++ b/deps/v8/src/numbers/conversions.h
@@ -5,6 +5,7 @@
#ifndef V8_NUMBERS_CONVERSIONS_H_
#define V8_NUMBERS_CONVERSIONS_H_
+#include "src/base/export-template.h"
#include "src/base/logging.h"
#include "src/common/globals.h"
#include "src/utils/vector.h"
@@ -99,8 +100,9 @@ MaybeHandle<BigInt> StringToBigInt(Isolate* isolate, Handle<String> string);
// 0x -> hex
// 0o -> octal
// 0b -> binary
-V8_EXPORT_PRIVATE MaybeHandle<BigInt> BigIntLiteral(Isolate* isolate,
- const char* string);
+template <typename LocalIsolate>
+EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE)
+MaybeHandle<BigInt> BigIntLiteral(LocalIsolate* isolate, const char* string);
const int kDoubleToCStringMinBufferSize = 100;