summaryrefslogtreecommitdiff
path: root/core/libdeno/test.h
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-05-02 00:18:18 +0200
committerBert Belder <bertbelder@gmail.com>2019-05-02 06:25:44 +0200
commitae0544b7ce8370fcd9322dd10a8c2ebdcbabe75c (patch)
treedaf4280ceb1e6a4da127f3db9eea06837082b113 /core/libdeno/test.h
parentc05cbc8eac91a9e1ab9b87c688ac4392eff01445 (diff)
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.
Diffstat (limited to 'core/libdeno/test.h')
-rw-r--r--core/libdeno/test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libdeno/test.h b/core/libdeno/test.h
index d7e6a3f80..4ae83f810 100644
--- a/core/libdeno/test.h
+++ b/core/libdeno/test.h
@@ -6,7 +6,7 @@
#include "testing/gtest/include/gtest/gtest.h"
extern deno_snapshot snapshot; // Loaded in libdeno/test.cc
-const deno_buf empty = {nullptr, 0, nullptr, 0};
+const deno_buf empty = {nullptr, 0};
const deno_snapshot empty_snapshot = {nullptr, 0};
#endif // TEST_H_