From: Vladimír Vondruš Date: Mon, 8 Jun 2020 22:22:30 +0000 (+0200) Subject: documentation/doxygen: put deprecated label after final/virtual label. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=020a7f007f0f3ac91016785ddcaacc3a9a34c119;p=blog.git documentation/doxygen: put deprecated label after final/virtual label. To be consistent with the order in class index pages. Doesn't affect any tests (which is fine). --- diff --git a/documentation/templates/doxygen/entry-class.html b/documentation/templates/doxygen/entry-class.html index fa291b5d..230d62ca 100644 --- a/documentation/templates/doxygen/entry-class.html +++ b/documentation/templates/doxygen/entry-class.html @@ -3,7 +3,7 @@ {% set j = joiner(', ') %}
template<{% for t in class.templates %}{{ j() }}{{ t.type }}{% if t.name %} {{ t.name }}{% endif %}{% if t.default %} = {{ t.default }}{% endif %}{% endfor %}>
{% endif %} - {{ class.kind }} {{ class.name }}{% if class.deprecated %} {{ class.deprecated }}{% endif %}{% if class.is_protected %} protected{% endif %}{% if class.is_final %} final{% elif class.is_virtual %} virtual{% endif %}{% if class.since %} {{ class.since }}{% endif %} + {{ class.kind }} {{ class.name }}{% if class.is_protected %} protected{% endif %}{% if class.is_final %} final{% elif class.is_virtual %} virtual{% endif %}{% if class.deprecated %} {{ class.deprecated }}{% endif %}{% if class.since %} {{ class.since }}{% endif %} {# the empty line is above to fix spacing #}