summaryrefslogtreecommitdiffstats
path: root/testing/067_using.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Provide template parameters also for type aliases in the XML output.Vladimír Vondruš2017-11-281-0/+7
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.