From b9003f640104ad79a049976fd34f0aad820d3ee2 Mon Sep 17 00:00:00 2001 From: Kotauskas Date: Sun, 5 May 2024 00:40:30 +0300 Subject: [PATCH] Don't need that check --- src/os/unix/local_socket/name_type.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/os/unix/local_socket/name_type.rs b/src/os/unix/local_socket/name_type.rs index f5e06dd..f96d13b 100644 --- a/src/os/unix/local_socket/name_type.rs +++ b/src/os/unix/local_socket/name_type.rs @@ -88,8 +88,7 @@ AbstractNsUdSocket); #[cfg(any(target_os = "linux", target_os = "android"))] impl NameType for AbstractNsUdSocket { fn is_supported() -> bool { - // TODO(2.0.1) maybe check Linux version here - true + true // Rust is unsupported on Linux below version 3.2 } } #[cfg(any(target_os = "linux", target_os = "android"))]