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
By code inspection, it really looks like the parsing of the negative format is messed up.
For one thing, the code that looks correct is assigned to C -- and that is the second C case in the switch, which means it won't be hit.
C
switch
The code for S which appears to be setting negative format, looks like incomplete code.
S
Finally, it seems like N would be a better format code.
N
The text was updated successfully, but these errors were encountered:
rlamorea
No branches or pull requests
By code inspection, it really looks like the parsing of the negative format is messed up.
For one thing, the code that looks correct is assigned to
C
-- and that is the secondC
casein the
switch
, which means it won't be hit.The code for
S
which appears to be setting negative format, looks like incomplete code.Finally, it seems like
N
would be a better format code.The text was updated successfully, but these errors were encountered: