Skip to content
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

Feature request: Support the letters q and Q in the expression of quadruple precision variables. #144

Open
kohei-noda-qcrg opened this issue Feb 13, 2023 · 0 comments · May be fixed by #145

Comments

@kohei-noda-qcrg
Copy link

Writing code with the following notation in quadruple precision would result in wasted spaces that would cause the compilation to fail, as shown below
code

real(16) :: r
r=1.0q-10

The above code is formatted as follows

real(16) :: r
r = 1.0q - 10

The expected formatting is as follows

real(16) :: r
r = 1.0q-10

Adding the --disable-whitespace option prevent this problem,
but it would also ignore all other whitespace-related formats,
so it would be preferable to support quadruple precision q and Q representations, but I'm not sure.

@kohei-noda-qcrg kohei-noda-qcrg linked a pull request Feb 13, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant