I use doxygen 1.7.1 to create documentation for some C ++ 11 code and seem to ignore my template aliases.
For clarity, here is an example of a template alias:
template<class T> using ResultOf = std::result_of<T>::type;
He also cannot take away more of the tradition of typedefs written using a cleaner new syntax:
using PredicateOne = std::function<bool(string)>;
Is there an installation or later that will correctly document these aliases?
source share