mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
clippy
This commit is contained in:
parent
c7de45a316
commit
0009e65d93
1 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
use bumpalo::Bump;
|
use bumpalo::Bump;
|
||||||
use clap::parser::ValuesRef;
|
|
||||||
use clap::ArgAction;
|
use clap::ArgAction;
|
||||||
use clap::{Arg, Command};
|
use clap::{Arg, Command};
|
||||||
use roc_wasm_interp::Action;
|
use roc_wasm_interp::Action;
|
||||||
|
@ -66,7 +65,7 @@ fn main() -> io::Result<()> {
|
||||||
let is_hex_format = matches.get_flag(FLAG_HEX);
|
let is_hex_format = matches.get_flag(FLAG_HEX);
|
||||||
let start_arg_strings = matches
|
let start_arg_strings = matches
|
||||||
.get_many::<String>(ARGS_FOR_APP)
|
.get_many::<String>(ARGS_FOR_APP)
|
||||||
.unwrap_or(ValuesRef::default())
|
.unwrap_or_default()
|
||||||
.map(|s| s.as_str());
|
.map(|s| s.as_str());
|
||||||
|
|
||||||
// Load the WebAssembly binary file
|
// Load the WebAssembly binary file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue