Forgot we have to fully-qualify the type here.

This commit is contained in:
Nolan Darilek 2020-06-02 16:59:04 -05:00
parent d46b886875
commit d004404e4d
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ impl Backend for WinRT {
Ok(())
}
fn is_speaking(&self) -> Result<bool, Error> {
fn is_speaking(&self) -> std::result::Result<bool, Error> {
unimplemented!()
}
}