From 00e9ef9401ffca352cfaecdaffb10c115d246715 Mon Sep 17 00:00:00 2001 From: zunda Date: Thu, 24 Oct 2024 01:48:00 +0900 Subject: [PATCH] fix os condition --- Sources/Helpers/URLSession+AsyncAwait.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Helpers/URLSession+AsyncAwait.swift b/Sources/Helpers/URLSession+AsyncAwait.swift index 116c4044..21d0b3fe 100644 --- a/Sources/Helpers/URLSession+AsyncAwait.swift +++ b/Sources/Helpers/URLSession+AsyncAwait.swift @@ -1,6 +1,6 @@ import Foundation -#if os(Linux) && os(Windows) && compiler(<6) +#if (os(Linux) || os(Windows)) && compiler(<6) import HTTPTypes import HTTPTypesFoundation