Kristoffer Carlsson
Kristoffer Carlsson
After #127 the following ```julia using Parsers opts = Parsers.Options(; quoted=true) str = """ "key" "value" """ r = Parsers.xparse(String, str, 1, length(str), opts) @show r.tlen ``` changed from showing...
This package segfaults on upcoming Julia 1.11 (https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/0520b80_vs_997b49f/VectorizedReduction.primary.log) with ``` in expression starting at /home/pkgeval/.julia/packages/VectorizedReduction/bsnWJ/test/reduce.jl:4 macro expansion at /home/pkgeval/.julia/packages/VectorizationBase/xE5Tx/src/llvm_intrin/binary_ops.jl:31 [inlined] vadd_fast at /home/pkgeval/.julia/packages/VectorizationBase/xE5Tx/src/llvm_intrin/binary_ops.jl:31 [inlined] fmap at /home/pkgeval/.julia/packages/VectorizationBase/xE5Tx/src/vecunroll/fmap.jl:11 [inlined] vadd_fast at...
Otherwise you get diff pinging between Pkg storing a TOML and Preferences: Here weakdeps and compat got moved:  
On julia 1.11+, an array actually has an inner structure (`Memory`)
``` ┌ ConstructionBaseExtras │ WARNING: Method definition constructorof(Type{var"#s1"} where var"#s1"
Something like: ```jl struct Node l::Union{Node,Nothing} r::Union{Node,Nothing} end make(n) = n === 0 ? Node(nothing, nothing) : Node(make(n-1), make(n-1)) check(node) = node.l === nothing ? 1 : 1 + check(node.l)...
`BLAS.axpy!` and `LinearAlgebra.axpy!` (the generic version) were separated in https://github.com/JuliaLang/julia/pull/44758 since calls to `BLAS.axpy!` did not always call into BLAS. This made this package break since it is calling `BLAS.axpy!`...
Introduced in https://github.com/JuliaLang/julia/pull/52841.