diff options
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index bd44c87..5e91836 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -918,7 +918,10 @@ void ClassDef::writeDetailedDocumentationBody(OutputList &ol) ol.startTextBlock(); - writeTemplateSpec(ol,this,compoundTypeString()); + if (getLanguage()==SrcLangExt_Cpp) + { + writeTemplateSpec(ol,this,compoundTypeString()); + } // repeat brief description if (!briefDescription().isEmpty() && repeatBrief) |