From: wolf Date: Tue, 14 Nov 2000 17:54:58 +0000 (+0000) Subject: Bring output of template class in right order: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=717dcab221e2a316c67bd8ec66351093cc3c8899;p=dealii-svn.git Bring output of template class in right order: template class Y; instead of class Y; The reason is that the latter leads to confusing for specialized classes: class Y; when the declaration was template class Y; git-svn-id: https://svn.dealii.org/trunk@3491 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/kdoc/src/kdocCxxHTML.pm b/deal.II/contrib/kdoc/src/kdocCxxHTML.pm index ac592c4013..dd90ff5f01 100644 --- a/deal.II/contrib/kdoc/src/kdocCxxHTML.pm +++ b/deal.II/contrib/kdoc/src/kdocCxxHTML.pm @@ -372,8 +372,9 @@ sub writeClassDoc # template form if ( exists $node->{Tmpl} ) { $extra .= tabRow( "Template form", + "template " + ."<".textRef($node->{Tmpl}, $rootnode )."> " . esc($node->{astNodeName}) - ."<".textRef($node->{Tmpl}, $rootnode )."> " ."" ); }