Skip to content

Commit

Permalink
clippy: Rust 1.79 fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Obst <[email protected]>
  • Loading branch information
Valentin Obst committed Jun 14, 2024
1 parent 4569aff commit 5cfd32d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ fn mark_values_in_caller_global_mem_as_potentially_overwritten(
} else {
caller_global_mem_region.mark_interval_values_as_top(
*index as i64,
std::i64::MAX - 1,
i64::MAX - 1,
ByteSize::new(1),
);
}
Expand Down
1 change: 0 additions & 1 deletion src/cwe_checker_lib/src/pcode/term.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use std::collections::{BTreeSet, HashMap};
use std::usize;

use super::subregister_substitution::replace_input_subregister;
use super::{Expression, ExpressionType, RegisterProperties, Variable};
Expand Down

0 comments on commit 5cfd32d

Please sign in to comment.