Hi!
We are using XML tag file integrated with Doxygen so we can do things like:
This works great for classes and structs, but not for functions, because in the XML tag file the <name> section does not include the std:: prefix, so we need to write:
Instead of:
Why is that? Would it be possible to add the std:: prefix to all symbols?
Hi!
We are using XML tag file integrated with Doxygen so we can do things like:
/// @see std::vectorThis works great for classes and structs, but not for functions, because in the XML tag file the
<name>section does not include thestd::prefix, so we need to write:/// @see beginInstead of:
/// @see std::beginWhy is that? Would it be possible to add the
std::prefix to all symbols?