Changeset 611

Show
Ignore:
Timestamp:
12/08/05 21:55:09 (3 years ago)
Author:
kris
Message:

whoops! made an invalid cast

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/example/logging.d

    r610 r611  
    5555                byte test (byte* f, uint x) 
    5656                { 
    57                         return cast(bool) (*(f+(x)/16) & (1<<(((x)%16)/2))); 
     57                        return cast(byte) (*(f+(x)/16) & (1<<(((x)%16)/2))); 
    5858                } 
    5959