Fortran module private variables and EXTRACT_PRIVATE = NO
Petr Parik <[email protected]>
| Newsgroups | gmane.text.doxygen.general |
|---|---|
| Message-ID | <[email protected]> |
Hi all, I have Doxygen 1.8.10 and a Fortran project. It seems the EXTRACT_PRIVATE = NO config option only "hides" module private functions/subroutines but not module private variables. Isn't that a bug? I'm including a minimum working test. Thanks for any comments. Best regards, Petr ------------------------------------------------------------------------------ _______________________________________________ Doxygen-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/doxygen-users
test.cfg
(text/plain, 110 B)
INPUT = test.f OPTIMIZE_FOR_FORTRAN = YES GENERATE_LATEX = NO EXTRACT_PRIVATE = NO
test.f
(text/plain, 253 B)
C> Test file.
MODULE TEST
IMPLICIT NONE
INTEGER VAR_PUB
INTEGER VAR_PRIV
PRIVATE VAR_PRIV,SUB_PRIV
CONTAINS
SUBROUTINE SUB_PUB
END SUBROUTINE
SUBROUTINE SUB_PRIV
END SUBROUTINE
END