summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-08 19:18:07 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-04-08 19:23:43 (GMT)
commite03e2a29f9279deabe62d795b0db925a982d0eef (patch)
tree8e0254cd7ea40d93489037f53d6f42d1619358c6 /src/outputlist.h
parenta9e4a9e5b51ab33df64f3989c710e08546dcd45d (diff)
downloadDoxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.zip
Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.gz
Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.bz2
issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index 7baef7a..fbb8801 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -213,6 +213,10 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::startMemberTemplateParams); }
void endMemberTemplateParams(const char *anchor,const char *inheritId)
{ forall(&OutputGenerator::endMemberTemplateParams,anchor,inheritId); }
+ void startCompoundTemplateParams()
+ { forall(&OutputGenerator::startCompoundTemplateParams); }
+ void endCompoundTemplateParams()
+ { forall(&OutputGenerator::endCompoundTemplateParams); }
void startMemberGroupHeader(bool b)
{ forall(&OutputGenerator::startMemberGroupHeader,b); }
void endMemberGroupHeader()