I have a mixed C++/Fortran codebase that I'm documenting with doxygen (1.8.8).
The C++ functions that are exposed to Fortran have a trailing underscore notation.
FORTRAN | C++ |
---|---|
CALL SUBRA( ... ) | subra_( ... ) |
Is there a way to get doxygen to recognize and link the function call with the definition?