summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-03 19:11:17 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-03 19:11:17 (GMT)
commitf673a99a492397b3647ce07eb9537b8d1522a541 (patch)
tree87e8f07f60b58f2de4b168a6a840e06adf6e92c4 /src
parent510289ea4b64ff6522ef2b93e923f17dde42beac (diff)
downloadDoxygen-f673a99a492397b3647ce07eb9537b8d1522a541.zip
Doxygen-f673a99a492397b3647ce07eb9537b8d1522a541.tar.gz
Doxygen-f673a99a492397b3647ce07eb9537b8d1522a541.tar.bz2
Avoid duplicate entry in the LaTeX output for inlined namespace
Diffstat (limited to 'src')
-rw-r--r--src/latexgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 3f4435f..b98b35b 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -1213,7 +1213,7 @@ void LatexGenerator::endIndexSection(IndexSections is)
}
while ((nd=nli.current()))
{
- if (nd->isLinkableInProject())
+ if (nd->isLinkableInProject() && !nd->isAlias())
{
//if (compactLatex) t << "\\input"; else t << "\\include";
t << "\\input";