Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #352: missing-cast-Thread.d.patch

File missing-cast-Thread.d.patch, 0.6 kB (added by jcomellas, 2 years ago)

Missing cast in lib/common/tango/core/Thread.d:2140

  • lib/common/tango/core/Thread.d

    old new  
    21372137        else version( JmpX86_Posix ) 
    21382138        { 
    21392139            sigjmp_buf buf = void; 
    2140             *oldp   = &buf; 
     2140            *oldp   = cast(**) &buf; 
    21412141            // Basically, oldp will be the address of the current sigjmp_buf 
    21422142            // and newp will be the address of the new sigjmp_buf. This means 
    21432143            // that tstack will effectively point to a sigjmp_buf if the