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
cl-conspack/t/encode-decode.lisp
Line 21 in 6e529d7
This line test with 5s0, which is a short-float. This errors inside number-type, which doesn't know about short-float.
It probably intended to test for single-float, in which case it needs to be 5f0 (exponent char 'f' ratgher than 's').
It will work on implementation when short-float is the same as single-float, but will fail on other implementations.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cl-conspack/t/encode-decode.lisp
Line 21 in 6e529d7
This line test with 5s0, which is a short-float. This errors inside number-type, which doesn't know about short-float.
It probably intended to test for single-float, in which case it needs to be 5f0 (exponent char 'f' ratgher than 's').
It will work on implementation when short-float is the same as single-float, but will fail on other implementations.
The text was updated successfully, but these errors were encountered: