Open carlosgalvezp opened 2 years ago
This sounds like something worth contributing upstream 🤔
I just took a look at this and unfortunately I don't know enough about Doxygen tag files to tell if that change would cause any problems (e.g. with IDEs). Since you can use std::begin
also via ADL (begin(someVector)
rather than std::begin(someVector)
), I guess an IDE might have trouble mapping the former to std::begin
.
Member functions use an unqualified name too, how do you reference those?
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 thestd::
prefix, so we need to write:Instead of:
Why is that? Would it be possible to add the
std::
prefix to all symbols?