Skip to content

Commit

Permalink
[#131] 불필요한 UnwindSafe impl 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
myyrakle committed Aug 27, 2024
1 parent 1e55fc9 commit 379cb1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rupring/src/boot/di.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::any::Any;
use std::panic::{RefUnwindSafe, UnwindSafe};
use std::panic::RefUnwindSafe;
use std::{any::TypeId, collections::HashMap};

pub struct DIContext {
Expand All @@ -9,7 +9,6 @@ pub struct DIContext {

unsafe impl Send for DIContext {}
unsafe impl Sync for DIContext {}
impl UnwindSafe for DIContext {}
impl RefUnwindSafe for DIContext {}

impl std::fmt::Debug for DIContext {
Expand Down

0 comments on commit 379cb1b

Please sign in to comment.