diff options
author | Aleksey Kladov <[email protected]> | 2020-10-23 14:18:33 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-23 14:18:33 +0100 |
commit | 1a74f25f9026f152fdba6f85ec617c02205d98eb (patch) | |
tree | 1ea6cbcb393def5f55a80b6aeb17d5ffbb6ec707 /crates/stdx | |
parent | 31db677a948cfad7c0651fb3cd45a2cf577bb95f (diff) |
Fix panic context
Diffstat (limited to 'crates/stdx')
-rw-r--r-- | crates/stdx/src/panic_context.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/stdx/src/panic_context.rs b/crates/stdx/src/panic_context.rs index fd232e0cc..8d51e20d3 100644 --- a/crates/stdx/src/panic_context.rs +++ b/crates/stdx/src/panic_context.rs | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | use std::{cell::RefCell, panic, sync::Once}; | 5 | use std::{cell::RefCell, panic, sync::Once}; |
6 | 6 | ||
7 | pub fn enter(context: String) -> impl Drop { | 7 | pub fn enter(context: String) -> PanicContext { |
8 | static ONCE: Once = Once::new(); | 8 | static ONCE: Once = Once::new(); |
9 | ONCE.call_once(PanicContext::init); | 9 | ONCE.call_once(PanicContext::init); |
10 | 10 | ||
@@ -13,7 +13,7 @@ pub fn enter(context: String) -> impl Drop { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | #[must_use] | 15 | #[must_use] |
16 | struct PanicContext { | 16 | pub struct PanicContext { |
17 | _priv: (), | 17 | _priv: (), |
18 | } | 18 | } |
19 | 19 | ||