Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeryAntopol committed Feb 7, 2024
1 parent 6040cdd commit 4890013
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crates/module-info-parser/src/effects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ use walrus::Module;
use std::path::Path;

const HOST_IMPORT_NAMESPACE_V0: &str = "host";

const HOST_IMPORT_NAMESPACE_PREFIX: &str = "__marine_host_api_v";
const LOGGER_IMPORT_NAME: &str = "log_utf8_string";
const CALL_PARAMETERS_IMPORT_NAME: &str = "get_call_parameters";
Expand Down
2 changes: 1 addition & 1 deletion marine/src/marine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ use crate::MemoryStats;
use crate::module_loading::load_modules_from_fs;
use crate::host_imports::logger::LoggerFilter;
use crate::host_imports::logger::WASM_LOG_ENV_NAME;
use crate::host_imports::call_parameters_v1_to_v0;
use crate::json_to_marine_err;

use marine_wasm_backend_traits::WasmBackend;
Expand All @@ -46,7 +47,6 @@ use std::convert::TryInto;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::Arc;
use crate::host_imports::call_parameters_v1_to_v0;

type MFunctionSignature = (Arc<Vec<IFunctionArg>>, Arc<Vec<IType>>);
type MModuleInterface = (Arc<Vec<IFunctionArg>>, Arc<Vec<IType>>, Arc<MRecordTypes>);
Expand Down

0 comments on commit 4890013

Please sign in to comment.