ci: Fix dead code error on nightly

See rust-lang/rust#118297
This commit is contained in:
daxpedda
2024-01-14 21:58:54 +01:00
committed by Kirill Chibisov
parent 978ec7dfec
commit c4bfbbe417
4 changed files with 8 additions and 8 deletions

View File

@@ -159,9 +159,9 @@ impl InputMethodResult {
#[derive(Debug, Clone)]
enum GetXimServersError {
XError(XError),
GetPropertyError(util::GetPropertyError),
InvalidUtf8(IntoStringError),
XError(#[allow(dead_code)] XError),
GetPropertyError(#[allow(dead_code)] util::GetPropertyError),
InvalidUtf8(#[allow(dead_code)] IntoStringError),
}
impl From<util::GetPropertyError> for GetXimServersError {