我正在使用doxygen 1.7.1为某些C++ 11代码生成文档,它似乎忽略了我的模板别名.
为清楚起见,这是模板别名的示例:
template<class T>
using ResultOf = std::result_of<T>::type;
Run Code Online (Sandbox Code Playgroud)
它也无法获得使用更清晰的new using语法编写的更多传统typedef:
using PredicateOne = std::function<bool(string)>; // Doxygen doesn't catch this
typedef std::function<bool(string)> PredicateTwo; // but does catch this.
Run Code Online (Sandbox Code Playgroud)
是否有适当记录这些别名的设置或更高版本?