summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-24 09:05:08 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-08-24 09:05:08 (GMT)
commit8578e6bead66cae44b61214b3a43f776ed008362 (patch)
tree960824dc207870a6fbe6cc9cbfc294d9ea0a481f /src/code.l
parent61e31b90708d501904665f85cfd3ea1b826b7afa (diff)
downloadDoxygen-8578e6bead66cae44b61214b3a43f776ed008362.zip
Doxygen-8578e6bead66cae44b61214b3a43f776ed008362.tar.gz
Doxygen-8578e6bead66cae44b61214b3a43f776ed008362.tar.bz2
issue #7973: C++ grouped functions in namespace have disapeard
- reverted some of the change that introduced the problem - fixed the original problem (#7216) in a different way
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index ddeca01..6627498 100644
--- a/src/code.l
+++ b/src/code.l
@@ -571,7 +571,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
// absPath = QDir::cleanDirPath(yyextra->sourceFileDef->getPath()+"/"+absPath);
//}
- FileDef *fd=findFileDef(Doxygen::inputNameLinkedMap,yytext,ambig);
+ const FileDef *fd=findFileDef(Doxygen::inputNameLinkedMap,yytext,ambig);
//printf("looking for include %s -> %s fd=%p\n",yytext,absPath.data(),fd);
if (fd && fd->isLinkable())
{