aboutsummaryrefslogtreecommitdiff
path: root/lib/arena/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arena/src/lib.rs')
-rw-r--r--lib/arena/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/arena/src/lib.rs b/lib/arena/src/lib.rs
index 3169aa5b8..b15fe941d 100644
--- a/lib/arena/src/lib.rs
+++ b/lib/arena/src/lib.rs
@@ -8,7 +8,8 @@ use std::{
8 ops::{Index, IndexMut}, 8 ops::{Index, IndexMut},
9}; 9};
10 10
11pub mod map; 11mod map;
12pub use map::ArenaMap;
12 13
13#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] 14#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
14pub struct RawId(u32); 15pub struct RawId(u32);