summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-12-24 09:33:59 (GMT)
committerGitHub <noreply@github.com>2017-12-24 09:33:59 (GMT)
commitef77c30f9fbdb46dd78795cdb0a325eb8c29cf2f (patch)
tree328b31f3cd81858e24ea31041b74e7e62158f84f /src/xmlgen.cpp
parent8acdd3ca5719be461674847341a6d9f93a27f367 (diff)
parent21f0ca0085c034a37df07c1ab690472bada0a1f1 (diff)
downloadDoxygen-ef77c30f9fbdb46dd78795cdb0a325eb8c29cf2f.zip
Doxygen-ef77c30f9fbdb46dd78795cdb0a325eb8c29cf2f.tar.gz
Doxygen-ef77c30f9fbdb46dd78795cdb0a325eb8c29cf2f.tar.bz2
Merge pull request #626 from mosra/xml-using-templates
Provide template parameters also for type aliases in the XML output
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 6e8c4cc..28809db 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -791,10 +791,7 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
md->memberType()!=MemberType_Enumeration
)
{
- if (md->memberType()!=MemberType_Typedef)
- {
- writeMemberTemplateLists(md,t);
- }
+ writeMemberTemplateLists(md,t);
QCString typeStr = md->typeString(); //replaceAnonymousScopes(md->typeString());
stripQualifiers(typeStr);
t << " <type>";