Skip to content

Commit

Permalink
Fix for m83
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerwang committed Apr 7, 2020
1 parent 4722bab commit e0fce58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node_serdes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ DeserializerContext::DeserializerContext(Environment* env,
length_(Buffer::Length(buffer)),
deserializer_(env->isolate(), data_, length_, this) {
object()->Set(env->context(), env->buffer_string(), buffer).Check();
deserializer_.SetExpectInlineWasm(true);
//deserializer_.SetExpectInlineWasm(true);

MakeWeak();
}
Expand Down
2 changes: 1 addition & 1 deletion src/node_types.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace {
V(DataView) \
V(SharedArrayBuffer) \
V(Proxy) \
V(WebAssemblyCompiledModule) \
V(WasmModuleObject) \
V(ModuleNamespaceObject) \

#define V(type) \
Expand Down

0 comments on commit e0fce58

Please sign in to comment.