From ae0544b7ce8370fcd9322dd10a8c2ebdcbabe75c Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 2 May 2019 00:18:18 +0200 Subject: core: remove support for moving deno_buf ownership from C++ to JavaScript The functionality hasn't been in use for a long time. Without this feature, the `alloc_ptr` and `alloc_len` fields are no longer necessary. --- core/libdeno/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/libdeno/internal.h') diff --git a/core/libdeno/internal.h b/core/libdeno/internal.h index b75cc9717..5e0051a8a 100644 --- a/core/libdeno/internal.h +++ b/core/libdeno/internal.h @@ -157,7 +157,7 @@ static intptr_t external_references[] = { reinterpret_cast(MessageCallback), 0}; -static const deno_buf empty_buf = {nullptr, 0, nullptr, 0}; +static const deno_buf empty_buf = {nullptr, 0}; static const deno_snapshot empty_snapshot = {nullptr, 0}; Deno* NewFromSnapshot(void* user_data, deno_recv_cb cb); -- cgit v1.2.3