summaryrefslogtreecommitdiffstats
path: root/testing/069
Commit message (Collapse)AuthorAgeFilesLines
* Fix some typos luz.paz2019-09-161-1/+1
|
* Remove persistent storage of Entry objectsDimitri van Heesch2019-02-171-10/+10
|
* Added declfile, declline, and declcolumn attributes to the location element ↵Dimitri van Heesch2019-01-121-10/+10
| | | | in the XML output
* Add variadic template function regression testsMatthew White2017-08-031-0/+309
* testing/069_link_variadic_template.cpp: new file, @link regression test for variadic template function * testing/069/069__link__variadic__template_8cpp.xml: new file, expected @link regression test result for variadic template function * testing/070_ref_variadic_template.cpp: new file, @ref regression test for variadic template function * testing/070/070__ref__variadic__template_8cpp.xml: new file, expected @ref regression test result for variadic template function At the time of writing, the part between <> is totally ignored: func<Args...>(Args... args) is interpreted as func(Args... args). Beware that a function parameter with either a & or * operator, e.g. 'const Args&... args', requires @link and @ref to use such parameter as verbatim, i.e. {@link func(const Args&... args)}. At the time of writing, the form {@link func(const Args&...)} will fail, unless the function parameter was declared just as 'const Args&...'.