Fixed #338 (broken doc)

This commit is contained in:
Matthias Koefferlein 2019-08-30 13:34:19 +02:00
parent 799246b862
commit b9886e472a
1 changed files with 1 additions and 1 deletions

View File

@ -825,7 +825,7 @@ method_arguments (const gsi::MethodBase *method, const gsi::ClassBase *cls_obj,
if (a->spec ()->has_default ()) {
r += " = ";
if (! a->spec ()->init_doc ().empty ()) {
r += replace_references (a->spec ()->init_doc (), cls_obj);
r += replace_references (escape_xml (a->spec ()->init_doc ()), cls_obj);
} else {
r += escape_xml (a->spec ()->default_value ().to_string ());
}