We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 string comparisons work on Julia v1.0. Currently we can't use === to compare due to a bug whose fix is only due to be backported in Julia v1.0.6; however there may not be any v1.0.6 at all.
===
Possible solution: set a comparison via e.g.
@static if VERSION < v1.2 const STRING_COMPARISON_OP = :(==) else const STRING_COMPARISON_OP = :(===) end
and then @eval this into the individual parse_node methods in src/base_types and src/derived_types.jl, and the @generated method in src/io.jl
@eval
parse_node
src/base_types
src/derived_types.jl
@generated
src/io.jl
The text was updated successfully, but these errors were encountered:
Drop support for Julia < v1.2
f5643c0
Stop supporting Julia v1.0 due to a bug in string comparisons with `===`. (See #3) It may be possible to support it again in the future if needed.
No branches or pull requests
Make string comparisons work on Julia v1.0. Currently we can't use
===
to compare due to a bug whose fix is only due to be backported in Julia v1.0.6; however there may not be any v1.0.6 at all.Possible solution: set a comparison via e.g.
and then
@eval
this into the individualparse_node
methods insrc/base_types
andsrc/derived_types.jl
, and the@generated
method insrc/io.jl
The text was updated successfully, but these errors were encountered: