cppalliance / mrdocs

MrDocs: A Clang/LLVM tool for building reference documentation from C++ code and javadoc comments.
https://mrdocs.com
Other
66 stars 16 forks source link

Adoc templates are renaming template parameters #630

Closed alandefreitas closed 1 week ago

alandefreitas commented 2 weeks ago

This function:

template<class Rule>
system::result<typename Rule::value_type>
parse(
    char const*& it,
    char const* end,
    Rule const& r);       

is becoming

image

where Rule becomes R.