fix warnings

This commit is contained in:
🪞👃🪞 2025-04-18 13:45:49 +03:00
parent 471959d1f5
commit aeddf561b1
3 changed files with 1 additions and 8 deletions

View file

@ -1,5 +1,3 @@
use crate::*;
mod align; pub use self::align::*;
mod bsp; pub use self::bsp::*;
mod cond; pub use self::cond::*;

View file

@ -39,7 +39,7 @@ macro_rules! transform_xy {
if k == $x || k == $y || k == $xy {
let _ = iter.next().unwrap();
let token = iter.next().expect("no content specified");
let content = get_content!(state => token);;
let content = get_content!(state => token);
return Some(match k {
$x => Self::x(content),
$y => Self::y(content),