summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-06-12 13:13:05 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-06-12 13:13:05 (GMT)
commit67ec066282ab93018fa4865cfb7fb39c5b6df8e4 (patch)
tree65d8dbc18bd319fd4e8a8928535b9d7d0780f914 /src/doxygen.cpp
parent74b8e42b85cda8927e14511fba8b83f85b6ff2c9 (diff)
downloadDoxygen-67ec066282ab93018fa4865cfb7fb39c5b6df8e4.zip
Doxygen-67ec066282ab93018fa4865cfb7fb39c5b6df8e4.tar.gz
Doxygen-67ec066282ab93018fa4865cfb7fb39c5b6df8e4.tar.bz2
Added concepts to the templated output
also made some changes to make the templated HTML output better match the built-in output.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index a54be26..9e434f2 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -1237,11 +1237,11 @@ static void addConceptToContext(const Entry *root)
cd->setLanguage(root->lang);
cd->setId(root->id);
cd->setHidden(root->hidden);
- cd->setInitializer(root->initializer.str().c_str());
if (tArgList)
{
cd->setTemplateArguments(*tArgList);
}
+ cd->setInitializer(root->initializer.str().c_str());
// file definition containing the class cd
cd->setBodySegment(root->startLine,root->bodyLine,root->endBodyLine);
cd->setBodyDef(fd);