Remove unused try_iter! macro

This commit is contained in:
Tad Hardesty 2024-06-25 16:54:21 -07:00
parent 5919d61c27
commit ffa13126f9

View file

@ -15,16 +15,6 @@ extern crate toml;
use std::borrow::Cow;
use std::path::Path;
#[allow(unused_macros)]
macro_rules! try_iter {
($e:expr) => {
match $e {
Ok(x) => x,
Err(e) => return Some(Err(From::from(e))),
}
};
}
mod error;
use ahash::RandomState;
pub use error::*;