Skip to content

Commit b66dbe1

Browse files
committed
Fix ~370 invalidations from Expr(:ncat, ...) pretty-printing
These get invalidated by loading Static.jl, specifically the method ``` Base.convert(::Type{T}, ::StaticInt{N}) where {T<:Number,N} = convert(T, N) ```
1 parent 2ebbb2b commit b66dbe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/show.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@ function show_unquoted(io::IO, ex::Expr, indent::Int, prec::Int, quote_level::In
18321832
elseif head === :hcat || head === :row
18331833
sep = " "
18341834
elseif head === :ncat || head === :nrow
1835-
sep = ";"^args[1] * " "
1835+
sep = ";"^args[1]::Int * " "
18361836
args = args[2:end]
18371837
nargs = nargs - 1
18381838
else

0 commit comments

Comments
 (0)