www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 687] New: DDoc doesn't document anonymous enums

reply d-bugmail puremagic.com writes:
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 digitalmars.com
        ReportedBy: smjg 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.


-- 
Dec 13 2006
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=687


bugzilla digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED





Fixed DMD 0.178


-- 
Dec 27 2006