diff options
| author | Michael Krasnitski <michael.krasnitski@gmail.com> | 2024-02-20 19:28:40 -0500 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2024-03-18 17:46:37 -0400 |
| commit | 2d3c4ece4a7a0a5573a5a5dee15dafd7c7b01a5a (patch) | |
| tree | 870661fdbdf13c9fd9235406481ae483ed5f90fa /rust/src | |
| parent | 46275f3367be969f3ce9f9264ad720bf83c2e0d1 (diff) | |
Adjust imports
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/mlil/operation.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/rust/src/mlil/operation.rs b/rust/src/mlil/operation.rs index 637386d2..fdeaaf1b 100644 --- a/rust/src/mlil/operation.rs +++ b/rust/src/mlil/operation.rs @@ -1,8 +1,6 @@ use std::collections::HashMap; -use crate::types; -use crate::types::ILIntrinsic; -use crate::types::{SSAVariable, Variable}; +use crate::types::{ConstantData, ILIntrinsic, SSAVariable, Variable}; use super::MediumLevelILLiftedInstruction; @@ -48,7 +46,7 @@ pub struct ConstData { } #[derive(Clone, Debug, Hash, PartialEq)] pub struct LiftedConstData { - pub constant_data: types::ConstantData, + pub constant_data: ConstantData, } // JUMP, RET_HINT |
