GNOME Bugzilla – Bug 522491
Fortran: Continuation characters parsed incorrectly in multiline declarations in Fortran code
Last modified: 2008-05-25 17:00:34 UTC
Please describe the problem: For Fortran subroutines and functions with multiline declarations, continuation characters are wrongly added to the documentation generated. Steps to reproduce: ! Example code ! doxygen run with EXTRACT_ALL = YES in Doxyfile function f (real x, & real y) end Actual results: doxygen returns the following documentation: Functions function f (real x, real &y) Function Documentation function f ( real x, real & y ) Expected results: doxygen should have returned the following documentation: Functions function f (real x, real y) Function Documentation function f ( real x, real y ) Does this happen every time? Yes Other information:
Similar problems occur with the following code: ! Example code function f (real x & , real y) end
*** This bug has been marked as a duplicate of 534785 ***