standardese
standardese copied to clipboard
Generate Docs for Class Type Aliases
Standardese currently produces the word 'hidden'
for any type aliases contained/defined in a class. So of the code generated looks like this:
Code in source:
using allocator_type = Alloc;
/// ...
constexpr box(const allocator_type& alloc) noexcept;
constexpr box('hidden' const& alloc) noexcept;
Is there anyway to fix this?
Regards
In my experimental branch I get int box(const allocator_type& alloc)
instead.
So this should be fixed if I ever manage to complete the 0.6.0 release.
Thanks for the reply. I will keep an I out for the release.