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 2137 2137 else version( JmpX86_Posix ) 2138 2138 { 2139 2139 sigjmp_buf buf = void; 2140 *oldp = &buf;2140 *oldp = cast(**) &buf; 2141 2141 // Basically, oldp will be the address of the current sigjmp_buf 2142 2142 // and newp will be the address of the new sigjmp_buf. This means 2143 2143 // that tstack will effectively point to a sigjmp_buf if the










