Changeset 282

Show
Ignore:
Timestamp:
02/10/08 02:12:43 (7 months ago)
Author:
aldacron
Message:

[DerelictUtil?]
* h3r3tic's last update works with the current Tango trunk, not the latest release. Should now work with both.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/DerelictUtil/derelict/util/wrapper.d

    r281 r282  
    6767    version(Tango) 
    6868    { 
    69         return fromStringz(cstr); 
     69        static if(Tango >= 0.995f) 
     70        { 
     71            return fromStringz(cstr); 
     72        } 
     73        else 
     74        { 
     75            return fromUtf8z(cstr); 
     76        } 
    7077    } 
    7178    else