Use attributes instead.

This commit is contained in:
Nolan Darilek 2021-05-11 20:18:14 -05:00
parent 86b2e07f15
commit 8f5f58028a
1 changed files with 4 additions and 3 deletions

View File

@ -531,8 +531,10 @@ impl Tts {
/* /*
* Returns `true` if a screen reader is available to provide speech. * Returns `true` if a screen reader is available to provide speech.
*/ */
#[allow(unreachable_code)]
pub fn screen_reader_available() -> bool { pub fn screen_reader_available() -> bool {
if cfg!(target_os = "windows") { #[cfg(target_os = "windows")]
{
#[cfg(feature = "tolk")] #[cfg(feature = "tolk")]
{ {
let tolk = tolk::Tolk::new(); let tolk = tolk::Tolk::new();
@ -540,9 +542,8 @@ impl Tts {
} }
#[cfg(not(feature = "tolk"))] #[cfg(not(feature = "tolk"))]
return false; return false;
} else {
false
} }
false
} }
} }