From 36745f98507ff3a53ffe7b4f40f45b4f8fe6f2c5 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 30 Sep 2019 10:36:20 -0500 Subject: [PATCH] Eliminate deprecation warning. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b74d51f..c766b73 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,7 +58,7 @@ pub trait Backend { fn set_volume(&mut self, volume: u8) -> Result<(), Error>; } -pub struct TTS(Box); +pub struct TTS(Box); unsafe impl std::marker::Send for TTS {}