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

Changeset 3185

Show
Ignore:
Timestamp:
02/14/08 12:59:43 (10 months ago)
Author:
larsivi
Message:

Really fixed instance from previous commit, several others plus removed abort on finding 1.026 on linux.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/dmdinclude

    r3126 r3185  
    3030            echo ">> Removing -inline due to bugzilla 668" 
    3131        fi 
    32         if [ "$DMDVERSIONMIN" = "26" ] 
    33         then 
    34             echo ">> This version of DMD has broken scoped interfaces." 
    35             echo ">> Aborting." 
    36             die "Broken version of compiler." 1 
    37         fi 
    3832    fi 
    3933} 
  • trunk/tango/io/archive/Zip.d

    r3145 r3185  
    14231423        // If we haven't verified the contents yet, just read everything in 
    14241424        // to trigger it. 
    1425         scope s = open; 
     1425        auto s = open; 
    14261426        auto buffer = new ubyte[s.conduit.bufferSize]; 
    14271427        while( s.read(buffer) != s.Eof ) 
  • trunk/tango/io/vfs/ZipArchive.d

    r3184 r3185  
    166166                { 
    167167                    { 
    168                         zi = file.zipEntry.open; 
     168                        auto zi = file.zipEntry.open; 
    169169                        scope(exit) zi.close; 
    170170     
     
    661661        if( dir.nz() ) 
    662662        { 
    663             scope dir_ent = this.folder(dir); 
    664             scope dir_obj = dir_ent.open; 
     663            auto dir_ent = this.folder(dir); 
     664            auto dir_obj = dir_ent.open; 
    665665            return dir_obj.file(name); 
    666666        }