dlang / ddox

Advanced D documentation engine
MIT License
62 stars 20 forks source link

Documentation for unnamed enums is not generated #206

Open FreeSlave opened 6 years ago

FreeSlave commented 6 years ago
///
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.