Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact
Show
Ignore:
Timestamp:
03/13/08 14:13:51 (4 years ago)
Author:
Nietsnie
Message:

Replaced all == null and != null that I could find with is null and !is null to be nice with DMD 1.028

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gc/basic/gcalloc.d

    r1856 r3349  
    8686 
    8787        p = VirtualAlloc(base + offset, nbytes, MEM_COMMIT, PAGE_READWRITE); 
    88     return cast(int)(p == null); 
     88    return cast(int)(p is null); 
    8989    } 
    9090