Commit 4fb1035
committed
prevent precompilation warning for upcoming versions of Julia
Fixes this precompilation warning:
```julia-repl
julia> using LinearSolve
Info Given LinearSolve was explicitly requested, output will be shown live
WARNING: Detected access to binding `LinearSolve.defaultalg_symbol` in a world prior to its definition world.
Julia 1.12 has introduced more strict world age semantics for global bindings.
!!! This code may malfunction under Revise.
!!! This code will error in future versions of Julia.
Hint: Add an appropriate `invokelatest` around the access to this binding.
To make this warning an error, and hence obtain a stack trace, use `julia --depwarn=error`.
Precompiling LinearSolve finished.
77 dependencies successfully precompiled in 85 seconds. 32 already precompiled.
1 dependency had output during precompilation:
┌ LinearSolve
│ [Output was shown above]
└
```1 parent b93eefa commit 4fb1035
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
| 143 | + | |
| 144 | + | |
143 | 145 | | |
144 | 146 | | |
145 | 147 | | |
| |||
0 commit comments