standardese icon indicating copy to clipboard operation
standardese copied to clipboard

Generate Docs for Class Type Aliases

Open oraqlle opened this issue 2 years ago • 2 comments

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

oraqlle avatar Jun 15 '22 13:06 oraqlle

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.

saraedum avatar Jun 16 '22 15:06 saraedum

Thanks for the reply. I will keep an I out for the release.

oraqlle avatar Jun 19 '22 04:06 oraqlle