You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Work around a diagnostic using CommandLine.arguments on older toolchains. (#2622)
`CommandLine.arguments` is declared read/write in older toolchains and this
causes an error diagnostic when it's used in Swift 6 mode. This PR uses
`CommandLine.argc` and `CommandLine.unsafeArgv` directly instead so the
diagnostic does not occur.
0 commit comments