ddox icon indicating copy to clipboard operation
ddox copied to clipboard

Documentation for unnamed enums is not generated

Open FreeSlave opened this issue 7 years ago • 0 comments

///
enum
{
    First,///
    Second ///
}

///
struct Struct
{
    ///
    enum
    {
        First, ///
        Second ///
    }
}

When I generate docs with dub build -b docs it produces the page with these enums and constants. Ddox 0.16.10 does not do it.

FreeSlave avatar May 06 '18 13:05 FreeSlave