File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
#include <mono/metadata/object.h>
6
6
#include <mono/metadata/loader.h>
7
7
8
- void mono_wasm_load_runtime (const char * unused , int debug_level );
8
+ void mono_wasm_load_runtime (int debug_level );
9
9
int mono_wasm_add_assembly (const char * name , const unsigned char * data , unsigned int size );
10
10
MonoAssembly * mono_wasm_assembly_load (const char * name );
11
11
MonoMethod * mono_wasi_assembly_get_entry_point (MonoAssembly * assembly );
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ load_runtimeconfig (void)
242
242
}
243
243
244
244
void
245
- mono_wasm_load_runtime (const char * unused , int debug_level )
245
+ mono_wasm_load_runtime (int debug_level )
246
246
{
247
247
const char * interp_opts = "" ;
248
248
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ int initialize_runtime()
50
50
#ifndef WASM_SINGLE_FILE
51
51
mono_set_assemblies_path ("managed" );
52
52
#endif
53
- mono_wasm_load_runtime ("" , 0 );
53
+ mono_wasm_load_runtime (0 );
54
54
55
55
#ifdef WASI_AFTER_RUNTIME_LOADED_CALLS
56
56
// This is supplied from the MSBuild itemgroup @(WasiAfterRuntimeLoaded)
You can’t perform that action at this time.
0 commit comments