Use new module naming

This commit is contained in:
Caleb Zulawski 2021-06-29 21:48:54 +00:00
parent fdd7d6e252
commit 529ffe05d6
2 changed files with 2 additions and 2 deletions

View file

@ -4,11 +4,11 @@
#[cfg_attr(
not(all(target_arch = "x86_64", target_feature = "avx512f")),
path = "full_masks.rs"
path = "masks/full_masks.rs"
)]
#[cfg_attr(
all(target_arch = "x86_64", target_feature = "avx512f"),
path = "bitmask.rs"
path = "masks/bitmask.rs"
)]
mod mask_impl;