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

Changeset 3957

Show
Ignore:
Timestamp:
10/03/08 21:49:37 (2 months ago)
Author:
kris
Message:

added option for stricter end of input

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/xml/PullParser.d

    r3899 r3957  
    1919 
    2020private import Integer = tango.text.convert.Integer; 
     21 
     22version = d; 
    2123 
    2224/******************************************************************************* 
     
    128130                   auto q = p; 
    129131                   if (p < e) 
     132version(d){ 
     133                       while (*++p != '<' && p != e) {} 
     134}else{ 
    130135                       while (*++p != '<') {} 
    131  
     136
    132137                   if (p < e) 
    133138                      {