Skip to content

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

Open
@kohei-noda-qcrg

Description

@kohei-noda-qcrg

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions