Show
Ignore:
Timestamp:
07/26/07 20:06:38 (5 years ago)
Author:
KirkMcDonald
Message:

* Pyd now requires D 2.003 or later.
* Pyd now compiles with D 2.003.
* Resolved long-standing string-copying annoyance (thanks to const).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/infrastructure/pyd/make_wrapper.d

    r118 r120  
    114114        } 
    115115    } 
    116     template __pyd_get_overload(char[] realname, fn_t) { 
    117         ReturnType!(fn_t) func(T ...) (char[] name, T t) { 
     116    template __pyd_get_overload(string realname, fn_t) { 
     117        ReturnType!(fn_t) func(T ...) (string name, T t) { 
    118118            PyObject* _pyobj = this.__pyd_get_pyobj(); 
    119119            if (_pyobj !is null) {