build: fix compilation on i686

It looks like 'cargo fix' didn't quite fix all 'use' statements.
This commit is contained in:
Andrew Gallant
2021-04-30 19:52:55 -04:00
parent 722ef21bb1
commit 9c8acf53d6
+6 -6
View File
@@ -1,11 +1,11 @@
#[cfg(target_arch = "x86_64")]
pub use crate::packed::teddy::compile::Builder;
#[cfg(not(target_arch = "x86_64"))]
pub use crate::packed::teddy::fallback::Builder;
#[cfg(not(target_arch = "x86_64"))]
pub use crate::packed::teddy::fallback::Teddy;
#[cfg(target_arch = "x86_64")]
pub use crate::packed::teddy::runtime::Teddy;
#[cfg(not(target_arch = "x86_64"))]
pub use packed::teddy::fallback::Builder;
#[cfg(not(target_arch = "x86_64"))]
pub use packed::teddy::fallback::Teddy;
#[cfg(target_arch = "x86_64")]
mod compile;
@@ -14,8 +14,8 @@ mod runtime;
#[cfg(not(target_arch = "x86_64"))]
mod fallback {
use packed::pattern::Patterns;
use Match;
use crate::packed::pattern::Patterns;
use crate::Match;
#[derive(Clone, Debug, Default)]
pub struct Builder(());