File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -960,7 +960,7 @@ v8::Local<v8::WasmModuleObject> m::wasm::detail::instantiate(v8::Isolate &isolat
960
960
auto buffer = v8::ArrayBuffer::New (&isolate, std::move (bs));
961
961
962
962
if (Options::Get ().statistics )
963
- std::cout << " Wasm code size: " << binary_size << ' B ' << std::endl;
963
+ std::cout << " Wasm code size: " << binary_size << " B " << std::endl;
964
964
965
965
args_t module_args { buffer };
966
966
auto wasm = Ctx->Global ()->Get (Ctx, mkstr (isolate, " WebAssembly" )).ToLocalChecked ().As <v8::Object>(); // WebAssembly class
@@ -969,7 +969,7 @@ v8::Local<v8::WasmModuleObject> m::wasm::detail::instantiate(v8::Isolate &isolat
969
969
free (binary_addr);
970
970
971
971
if (Options::Get ().statistics )
972
- std::cout << " Machine code size: " << wasm_module->GetCompiledModule ().Serialize ().size << ' B ' << std::endl;
972
+ std::cout << " Machine code size: " << wasm_module->GetCompiledModule ().Serialize ().size << " B " << std::endl;
973
973
974
974
args_t instance_args { wasm_module, imports };
975
975
return wasm->Get (Ctx, mkstr (isolate, " Instance" )).ToLocalChecked ().As <v8::Object>()
You can’t perform that action at this time.
0 commit comments