www.digitalmars.com         C & C++   DMDScript  

D.gnu - [Issue 1888] New: unfortunate comment in stdlib.d

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=1888

           Summary: unfortunate comment in stdlib.d
           Product: DGCC aka GDC
           Version: unspecified
          Platform: All
        OS/Version: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: dvdfrdmn users.sf.net
        ReportedBy: afb algonet.se


(GDC r199)

Got a strange error with the innocent
  alias std.c.stdlib.atof atof;
(whilst trying to keep std.string and std.c.stdlib apart)
  Error: identifier 'atof' of 'std.c.stdlib.atof' is not defined

Turned out the placement of the comment was unfortunate:

    version (GNU)
    {
        private import gcc.config.errno;
        alias gcc.config.errno.ERANGE ERANGE;
    }
    else
        //const int ERANGE = 34;        // on both Windows and linux

double atof(char *);    ///
int    atoi(char *);    /// ditto

Alternatively, it forgot to comment out the else.


-- 
Mar 03 2008
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=1888


dvdfrdmn users.sf.net changed:

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





Fixed in release 0.25 / svn 210


-- 
Apr 16 2008