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

Changeset 3384

Show
Ignore:
Timestamp:
03/20/08 23:56:21 (9 months ago)
Author:
kris
Message:

removed warnings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/FilePath.d

    r3353 r3384  
    12591259                private static DWORD getInfo (char[] name, inout WIN32_FILE_ATTRIBUTE_DATA info) 
    12601260                { 
    1261                         if (fileInfo (name, info)) 
    1262                             return info.dwFileAttributes
    1263                         exception (name)
     1261                        if (! fileInfo (name, info)) 
     1262                              exception (name)
     1263                        return info.dwFileAttributes
    12641264                } 
    12651265 
  • trunk/tango/text/Regex.d

    r3356 r3384  
    24022402                        continue; 
    24032403                    for ( char_t c = p.l_; c <= min(p.r_, LOOKUP_LENGTH-1); ++c ) 
    2404                         lookup[c] = i; 
     2404                        lookup[c] = cast(ubyte) i; 
    24052405                } 
    24062406            } 
  • trunk/tango/text/stream/StreamIterator.d

    r3381 r3384  
    114114        { 
    115115                assert(false, "StreamIterator.push not supported"); 
    116                 return null; 
    117116        } 
    118117