[bitset] Rename bitset module

This commit is contained in:
Ming-Hung Tsai 2021-04-16 21:44:45 +08:00
parent 1964015d81
commit c17559791f
3 changed files with 2 additions and 2 deletions

2
src/cache/check.rs vendored
View File

@ -10,7 +10,7 @@ use crate::cache::superblock::*;
use crate::io_engine::{AsyncIoEngine, IoEngine, SyncIoEngine}; use crate::io_engine::{AsyncIoEngine, IoEngine, SyncIoEngine};
use crate::pdata::array::{self, ArrayBlock, ArrayError}; use crate::pdata::array::{self, ArrayBlock, ArrayError};
use crate::pdata::array_walker::*; use crate::pdata::array_walker::*;
use crate::pdata::bitset_walker::*; use crate::pdata::bitset::*;
//------------------------------------------ //------------------------------------------

View File

@ -1,6 +1,6 @@
pub mod array; pub mod array;
pub mod array_walker; pub mod array_walker;
pub mod bitset_walker; pub mod bitset;
pub mod btree; pub mod btree;
pub mod btree_builder; pub mod btree_builder;
pub mod btree_merge; pub mod btree_merge;