This commit is contained in:
rustdesk 2024-09-18 12:37:26 +08:00
parent cc288272d3
commit e1a6ccc100
2 changed files with 6 additions and 6 deletions

View File

@ -79,9 +79,3 @@ where
libc::signal(libc::SIGSEGV, breakdown_signal_handler as _);
}
}
#[cfg(any(target_os = "android", target_os = "ios"))]
#[inline]
fn is_prelogin() -> bool {
false
}

View File

@ -128,6 +128,12 @@ impl Drop for InstallingService {
}
}
#[cfg(any(target_os = "android", target_os = "ios"))]
#[inline]
fn is_prelogin() -> bool {
false
}
#[cfg(test)]
mod tests {
use super::*;