Skip to content

Commit

Permalink
fix release warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed May 12, 2024
1 parent 63b0b37 commit 3c2b8d6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions libcore/src/dynadata.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use core::panic;
use std::{collections::HashMap, mem::size_of, sync::OnceLock};

use crate::gc::GcMgr;
use std::{mem::size_of, sync::OnceLock};

pub type Byte = u8;

Expand All @@ -22,7 +20,7 @@ pub struct DynaData {
size_used: Vec<usize>,
#[cfg(debug_assertions)]
// 起始地址到终点地址的映射
mapped_var: HashMap<usize, usize>,
mapped_var: std::collections::HashMap<usize, usize>,
}

impl DynaData {
Expand Down

0 comments on commit 3c2b8d6

Please sign in to comment.