Changeset 164

Show
Ignore:
Timestamp:
05/02/07 20:35:32 (2 years ago)
Author:
JarrettBillingsley
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mdcl.brf

    r163 r164  
    44-O 
    55-inline 
    6 -g 
    76-op 
  • trunk/minid/types.d

    r163 r164  
    20142014        else 
    20152015        { 
     2016            for(Slot* slot = &mSlots[h]; slot !is null; slot = slot.next) 
     2017            { 
     2018                if(slot.key == key) 
     2019                { 
     2020                    slot.value = value; 
     2021                    return; 
     2022                } 
     2023            } 
     2024 
    20162025            if(mColSlot == mSlots.length) 
    20172026                grow(); 
  • trunk/samples/simple.md

    r163 r164  
    2020local d = Derived(); 
    2121d.fork(); 
     22 
     23writefln(); 
    2224 
    2325// Coroutines and coroutine iteration. 
  • trunk/test.d

    r163 r164  
    1919        MDFileLoader().addPath(`benchmark`); 
    2020 
    21         MDGlobalState().importModule("fasta"); 
     21        MDGlobalState().importModule("simple"); 
    2222    } 
    2323    catch(MDException e)