-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make "global const" work #248
Labels
bug
Indicates an unexpected problem or unintended behavior
Comments
ghost
assigned JeffBezanson
Nov 2, 2011
JeffBezanson
added a commit
that referenced
this issue
Nov 2, 2011
StefanKarpinski
pushed a commit
that referenced
this issue
Feb 8, 2018
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Oct 11, 2021
* Made `WeightVec` a subtype of `RealVector` * Added a few tests to weights.jl * Changed parameterization of WeightVec. - Parameterization to `WeightVec{S<:Real, T<:Real, T<:AbstractVector}` - Uses triangular dispatch for julia version passed v"0.6.0-dev.2123" * Moved constructors out of version check. * Cleaned up WeightVec constructors. * Fixed thrown `MethodError` call in `median(::AbstractArray, ::WeightVec)`
Keno
pushed a commit
that referenced
this issue
Oct 9, 2023
IanButterworth
pushed a commit
that referenced
this issue
Aug 28, 2024
…1061ecc (#55615) Stdlib: Downloads URL: https://github.com/JuliaLang/Downloads.jl.git Stdlib branch: master Julia branch: backports-release-1.11 Old commit: a9d274f New commit: 1061ecc Julia version: 1.11.0-rc2 Downloads version: 1.6.0(It's okay that it doesn't match) Bump invoked by: @IanButterworth Powered by: [BumpStdlibs.jl](https://github.com/JuliaLang/BumpStdlibs.jl) Diff: JuliaLang/Downloads.jl@a9d274f...1061ecc ``` $ git log --oneline a9d274f..1061ecc 1061ecc Fix setting atexit. Fixes trailing download tasks during precompilation (#257) b871386 Add debug information to `setopt` commands (#248) 51e5321 fix: use invokelatest for easy_hook, avoid race (#241) 05f9ec2 make precompile workload relocatable (#236) 2dd891a Hardcode doc edit backlink (#232) ``` Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tried this:
Doesn't work since
global
andconst
don't appear to play nicely together. Not sure all of this diff is correct, but the construct makes sense, at least — it should allow an inner scope to declare a global constant. The opposite orderconst global
should probably also work (or be illegal).The text was updated successfully, but these errors were encountered: