fix: eliminate panics

This commit is contained in:
Shunsuke Shibayama 2023-03-06 13:29:27 +09:00
parent 228a74d29d
commit b1a9f7bf40
4 changed files with 40 additions and 19 deletions

View file

@ -37,6 +37,7 @@ pub mod tty;
use crate::set::Set;
pub use crate::str::Str;
pub use crate::triple::Triple;
pub type RcArray<T> = std::rc::Rc<[T]>;