From 3e738d107a5cc2f28b4889c244dd6f3d2cf925f1 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Wed, 23 Oct 2019 23:21:02 +0200 Subject: [PATCH] src: remove unimplemented method from node.h This function was not actually available during any part of the Node 12 release line because it had been removed earlier (likely accidentally). Refs: https://github.com/nodejs/node/pull/27220 --- src/node.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/node.h b/src/node.h index 240399d1ed5f6a..b919701f398def 100644 --- a/src/node.h +++ b/src/node.h @@ -285,13 +285,6 @@ class NODE_EXTERN MultiIsolatePlatform : public v8::Platform { void* data) = 0; }; -// Set up some Node.js-specific defaults for `params`, in particular -// the ArrayBuffer::Allocator if it is provided, memory limits, and -// possibly a code event handler. -NODE_EXTERN void SetIsolateCreateParams(v8::Isolate::CreateParams* params, - ArrayBufferAllocator* allocator - = nullptr); - enum IsolateSettingsFlags { MESSAGE_LISTENER_WITH_ERROR_LEVEL = 1 << 0, DETAILED_SOURCE_POSITIONS_FOR_PROFILING = 1 << 1