From 41d1d775c79a2eecebf6600b377cddeb9ef6dc27 Mon Sep 17 00:00:00 2001 From: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> Date: Wed, 12 Feb 2025 18:00:17 -0500 Subject: [PATCH] Make CommandParser.swift import Swift version consistent with other files. Resolve #723 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> --- Sources/ArgumentParser/Parsing/CommandParser.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ArgumentParser/Parsing/CommandParser.swift b/Sources/ArgumentParser/Parsing/CommandParser.swift index e9cd80b0f..de0ce844a 100644 --- a/Sources/ArgumentParser/Parsing/CommandParser.swift +++ b/Sources/ArgumentParser/Parsing/CommandParser.swift @@ -9,7 +9,7 @@ // //===----------------------------------------------------------------------===// -#if swift(>=5.11) +#if swift(>=6.0) internal import class Foundation.ProcessInfo #else import class Foundation.ProcessInfo