mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
fix warnings
This commit is contained in:
parent
471959d1f5
commit
aeddf561b1
3 changed files with 1 additions and 8 deletions
|
|
@ -1,5 +1,3 @@
|
|||
use crate::*;
|
||||
|
||||
mod align; pub use self::align::*;
|
||||
mod bsp; pub use self::bsp::*;
|
||||
mod cond; pub use self::cond::*;
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -7,11 +7,6 @@ pub(crate) use ::tengri_input::*;
|
|||
pub use ::tengri_output as output;
|
||||
pub(crate) use ::tengri_output::*;
|
||||
|
||||
#[cfg(feature = "dsl")]
|
||||
pub use ::tengri_dsl;
|
||||
#[cfg(feature = "dsl")]
|
||||
pub(crate) use ::tengri_dsl::*;
|
||||
|
||||
pub(crate) use atomic_float::AtomicF64;
|
||||
|
||||
pub use ::better_panic; pub(crate) use ::better_panic::{Settings, Verbosity};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue