diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-03-22 13:09:04 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-03-22 13:09:04 (GMT) |
commit | 32093bcca82c7d3a4df4670f52340033e9f16b62 (patch) | |
tree | 2c07734b7eaae6b4d51735ebfd449116f98417a1 /src/doxygen.cpp | |
parent | 95375152974fa7e0e4d4cec7007d942dd5e9615e (diff) | |
download | Doxygen-32093bcca82c7d3a4df4670f52340033e9f16b62.zip Doxygen-32093bcca82c7d3a4df4670f52340033e9f16b62.tar.gz Doxygen-32093bcca82c7d3a4df4670f52340033e9f16b62.tar.bz2 |
Fix for rendering the template parameters of members of variadic template classes.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index fbad9d1..d966738 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -1353,7 +1353,7 @@ static void addClassToContext(EntryNav *rootNav) //printf("new ClassDef %s tempArgList=%p specScope=%s\n",fullName.data(),root->tArgList,root->scopeSpec.data()); //printf("class %s template args=%s\n",fullName.data(), - // tArgList ? tempArgListToString(tArgList).data() : "<none>"); + // tArgList ? tempArgListToString(tArgList,root->lang).data() : "<none>"); cd->setTemplateArguments(tArgList); cd->setProtection(root->protection); cd->setIsStatic(root->stat); |