summaryrefslogtreecommitdiffstats
path: root/testing/067
Commit message (Collapse)AuthorAgeFilesLines
* Adding the xml:lang tag to XML and Docbook outputalbert-github2020-06-031-1/+1
| | | | | | | | Adding the xml:lang attribute for XNL and Docbook output Interesting links: - language codes (different from country codes!): https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry - example for xml.xsd: http://www.java2s.com/Code/XML/XML-Schema/importanotherXMLschema.htm
* Remove persistent storage of Entry objectsDimitri van Heesch2019-02-171-2/+2
|
* Added declfile, declline, and declcolumn attributes to the location element ↵Dimitri van Heesch2019-01-121-2/+2
| | | | in the XML output
* Test renumberingalbert-github2018-04-011-32/+0
| | | | The tests numbers 067 and 068 were used twice, test 067 has been renamed to 072 and test 068 has been renamed to 073.
* Merge branch 'variadic' of https://github.com/mehw/doxygen into mehw-variadicDimitri van Heesch2017-12-271-0/+54
|\
| * Add variadic function arguments '...' regression testsMatthew White2017-08-031-0/+54
| | | | | | | | | | | * testing/067_link_varargs.cpp: new file, @link regression test for variadic function arguments '...' * testing/067/067__link__varargs_8cpp.xml: new file, expected @link regression test result for variadic function arguments '...' * testing/068_ref_varargs.cpp: new file, @ref regression test for variadic function arguments '...' * testing/068/068__ref__varargs_8cpp.xml: new file, expected @ref regression test result for variadic function arguments '...'
* Provide template parameters also for type aliases in the XML output.Vladimír Vondruš2017-11-281-0/+32
Until now, probably due to C++03 assumptions, typedefs and type aliases skipped printing of the template parameter specifications to the XML output. That's now fixed, so the following type alias will properly contain <templateparamlist> in the XML output: template<class T> using Vec = std::vector<T>; Added also a test case that verifies this.