[Issue 1720] New: std.math.NotImplemented missing a space in message

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Dec 9 11:42:13 PST 2007


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

           Summary: std.math.NotImplemented missing a space in message
           Product: D
           Version: 1.024
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: Phobos
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: wbaxter at gmail.com


class NotImplemented : Error
{
    this(string msg)
    {
        super(msg ~ "not implemented"); 
        // should be
        //super(msg ~ " not implemented"); 
    }
}

Currently the message printed out is something like:

Error: nextafternot implemented


-- 



More information about the Digitalmars-d-bugs mailing list