summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-09-23 10:55:40 (GMT)
committerGitHub <noreply@github.com>2018-09-23 10:55:40 (GMT)
commite8eb68511c216583a8aa981bf621778936672c7f (patch)
tree50cdf50f42bd6a18a437257687c755e003221604
parentaef431d2e34fbd738fe5eb8d1d14a88fae9d536d (diff)
parent28fe14198cf1da1f6bef42d4cba4cfbec35c7155 (diff)
downloadDoxygen-e8eb68511c216583a8aa981bf621778936672c7f.zip
Doxygen-e8eb68511c216583a8aa981bf621778936672c7f.tar.gz
Doxygen-e8eb68511c216583a8aa981bf621778936672c7f.tar.bz2
Merge pull request #6489 from albert-github/feature/bug_cs_using_link
Don't link to non existing / not accessible namespaces , in CSharp, in the source code
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index 87dc1fe..bb9744b 100644
--- a/src/code.l
+++ b/src/code.l
@@ -983,7 +983,7 @@ static void generateClassOrGlobalLink(CodeOutputInterface &ol,const char *clName
}
}
NamespaceDef *nd = getResolvedNamespace(className);
- if (nd)
+ if (nd && nd->isLinkableInProject())
{
g_theCallContext.setScope(nd);
addToSearchIndex(className);