aboutsummaryrefslogtreecommitdiffstats
path: root/src/state/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/mod.rs')
-rw-r--r--src/state/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/mod.rs b/src/state/mod.rs
index fc563e7..5313b4f 100644
--- a/src/state/mod.rs
+++ b/src/state/mod.rs
@@ -2,6 +2,6 @@ mod threads;
pub use threads::Threads;
-pub enum State<'d, 'q> {
- Threads(Threads<'d, 'q>),
+pub enum State {
+ Threads(Threads),
}