chore: replaced with macros call to remove warning

This commit is contained in:
Sherzod Mutalov 2025-06-26 01:01:12 +05:00 committed by Ramon Perez
parent f1dd42de9e
commit 49c8334e40

View File

@ -514,7 +514,7 @@ async fn schedule_mcp_start_task<R: Runtime>(
let mut cmd = Command::new(command.clone());
let mut is_macos_without_avx2 = false;
#[cfg(all(target_os="macos", any(target_arch = "x86", target_arch = "x86_64"))) ]
if cfg!(all(target_os="macos", any(target_arch = "x86", target_arch = "x86_64")))
{
is_macos_without_avx2 = !is_x86_feature_detected!("avx2");
if is_macos_without_avx2 {