Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[photran-dev] implicit none refactoring

Have a program with:

call getarg(1,arg1)

After using the "Introduce Implicit None" refactoring, it added the following declaration:

real :: getarg

Which then results in:

error #6552: The CALL statement is invoking a function subprogram as a subroutine.

Also, whenever I run a refactor command I get:

C preprocessor directives are IGNORED by the refactoring engine. Use at your own risk.

There are no C preprocessor directives in the source, but maybe this is always emitted?

--
Orion Poplawski
Technical Manager                     303-415-9701 x222
NWRA/CoRA Division                    FAX: 303-415-9702
3380 Mitchell Lane                  orion@xxxxxxxxxxxxx
Boulder, CO 80301              http://www.cora.nwra.com


Back to the top