summaryrefslogtreecommitdiffstats
path: root/testing/068
Commit message (Collapse)AuthorAgeFilesLines
* 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-25/+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 information about enum type "strongness" in the XML output.Vladimír Vondruš2017-11-291-1/+1
| | | | | | | There's a new boolean `strong` attribute on the `<memberdef>` element that defines whether the enum is a classic or a strong one. Tests were updated to verify both cases.
* Expose underlying enum type in the XML output.Vladimír Vondruš2017-11-291-0/+25
The <type> element (used for function return type and variable type) is now reused also for underlying enum type. C++03-style enum types that don't have the underlying type specified have the <type> tag as well, but empty to indicate that the underlying type is unspecified. Added a new test case for this.