diff options
| author | mo8it <mo8it@proton.me> | 2024-07-04 13:38:35 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-07-04 13:38:35 +0200 |
| commit | b87aa986345cd80bc44c7fe7bffeb72f5fe0ddb5 (patch) | |
| tree | b9f2400168cfba69cb3f0914e337df2436843023 /solutions/13_error_handling/errors2.rs | |
| parent | a4c07ca948dd57c71fe1894d05308af03304dec8 (diff) | |
Fix warnings
Diffstat (limited to 'solutions/13_error_handling/errors2.rs')
| -rw-r--r-- | solutions/13_error_handling/errors2.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solutions/13_error_handling/errors2.rs b/solutions/13_error_handling/errors2.rs index f652ecb..0597c8c 100644 --- a/solutions/13_error_handling/errors2.rs +++ b/solutions/13_error_handling/errors2.rs @@ -16,6 +16,7 @@ use std::num::ParseIntError; +#[allow(unused_variables)] fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> { let processing_fee = 1; let cost_per_item = 5; |
