Move macros.rs to first.rs

This awkwardly has to go first right now, and we don't want more
macros to go into this ambiguously named mod, so let's rename it
to be more literal.
This commit is contained in:
Jubilee Young 2021-02-21 16:23:19 -08:00
parent 39fb223385
commit a2302da5b2
2 changed files with 1 additions and 1 deletions

View file

@ -5,7 +5,7 @@
//! Portable SIMD module.
#[macro_use]
mod macros;
mod first;
#[macro_use]
mod permute;
#[macro_use]