[Issue 687] New: DDoc doesn't document anonymous enums

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Dec 13 11:59:36 PST 2006


http://d.puremagic.com/issues/show_bug.cgi?id=687

           Summary: DDoc doesn't document anonymous enums
           Product: D
           Version: 0.177
          Platform: All
               URL: http://www.digitalmars.com/d/phobos/std_c_fenv.html
        OS/Version: All
            Status: NEW
          Keywords: ddoc
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: smjg at iname.com
OtherBugsDependingO 667
             nThis:


std\c\fenv.d contains documentation comments for various anonymous enums.  For
example:

----------
/// The various floating point exceptions
enum
{
    FE_INVALID      = 1,        ///
    FE_DENORMAL     = 2,        ///
    FE_DIVBYZERO    = 4,        ///
    FE_OVERFLOW     = 8,        ///
    FE_UNDERFLOW    = 0x10,     ///
    FE_INEXACT      = 0x20,     ///
    FE_ALL_EXCEPT   = 0x3F,     /// Mask of all the exceptions
}
----------

However, they have not been picked up by DDoc.  Consequently, the std.c.fenv
documentation is useless.


-- 



More information about the Digitalmars-d-bugs mailing list