Changeset 32

Show
Ignore:
Timestamp:
11/09/06 18:41:30 (2 years ago)
Author:
jpelcis
Message:

Fixed a "no effect in expression" warning.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/buildme.d

    r31 r32  
    3535 *  2006-10-20  Fixed linux sleep issues. 
    3636 *  2006-11-01  Non-Windows library names will now be in the proper style. 
     37 *  2003-11-09  Fixed a "no effect in expression" warning. 
    3738 * 
    3839 * Copyright: BSD license 
     
    9293        } 
    9394        version (Windows) { 
    94             switchesCompiler["-o dbi.lib"]
     95            switchesCompiler["-o dbi.lib"] = true
    9596        } else { 
    96             switchesCompiler["-o libdbi.a"]
     97            switchesCompiler["-o libdbi.a"] = true
    9798        } 
    9899        version (Ares) { 
     
    151152    } 
    152153    char[] buildCommand; 
    153     buildCommand.length = buildCommandArray.length * 10; 
    154154    foreach (char[] command; buildCommandArray) { 
    155155        buildCommand ~= command ~ " ";