GNOME Bugzilla – Bug 757621
unclosed tag, c# generics method with where
Last modified: 2015-12-30 10:19:02 UTC
1. wrote csharp generics method and restrictions to class public class TestClass { /// <summary> unclose tag 'dd' </summary> public void TestMethod<T>(T obj) where T : class { } } 2. unclosed tag in html outputs unclosed <dd> ---- <p>unclose tag 'dd' </p> <div class="typeconstraint"> <dl><dt><b>Type Constraints</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"><em>T</em></td><td> :</td><td valign="top"><em>class</em></td><td> </td></tr> </table> </dl> </div> ---- problems here? src/htmlgen.cpp void HtmlGenerator::startConstraintList(const char *header) { t << "<div class=\"typeconstraint\">" << endl; t << "<dl><dt><b>" << header << "</b></dt><dd>" << endl; t << "<table border=\"0\" cellspacing=\"2\" cellpadding=\"0\">" << endl; }
I've just pushed a proposed fix to github (pull request 408)
Code has been integrated on github (commit: 12f6f4faf541116295dcd69958e476ec32150a64)
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.11. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferably in the form of a self-contained example).