Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3920 for trunk/tango

Show
Ignore:
Timestamp:
08/28/08 17:11:55 (3 months ago)
Author:
kris
Message:

added numeric 'E' check

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/json/JsonParser.d

    r3913 r3920  
    294294                    while (c = *++p, c >= '0' && c <= '9') {}                  
    295295 
    296                 if (c is 'e'
     296                if (c is 'e' || c is 'E'
    297297                    while (c = *++p, c >= '0' && c <= '9') {} 
    298298