Skip to content

Commit

Permalink
Remove filtering rule when generating FORTRAN module links
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Nov 30, 2014
1 parent 7ace28e commit 238b733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fortrancode.l
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ static void generateLink(CodeOutputInterface &ol, char *lname)
}
}
// check for module
else if ( (getFortranNamespaceDefs(tmp, nsd)) && nsd->isLinkable() && currentClass!="class" )
else if ( (getFortranNamespaceDefs(tmp, nsd)) && nsd->isLinkable() )
{ // write module link
writeMultiLineCodeLink(ol,nsd,tmp);
addToSearchIndex(tmp.data());
Expand Down

0 comments on commit 238b733

Please sign in to comment.