We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f224028 commit 7b1c319Copy full SHA for 7b1c319
src/Platforms.jl
@@ -41,7 +41,7 @@ platform_exeext(p::AbstractPlatform) = Sys.iswindows(p) ? ".exe" : ""
41
42
# Helper parsing function: it extends `parse(Platform, p)` by supporting
43
# `AnyPlatform` as well.
44
-parse_platform(p::String) = p == "any" ? AnyPlatform() : parse(Platform, p; validate_strict=true)
+parse_platform(p::AbstractString) = p == "any" ? AnyPlatform() : parse(Platform, p; validate_strict=true)
45
46
47
# Recursively test for key presence in nested dicts
0 commit comments