Search

October 10
General »
...libmir:
```
source/mir/rc/ptr.d(395,15): Error: `mir.rc.ptr.castTo` called with...
October 07
General »
...auto ptr = &(c ? a : b);
    *ptr = 8;
    assert(a == 8);
    ptr = &(c ? b : a);
    *ptr...
October 07
Learn »
...response **resp, void *appdata_ptr) {
            PAMdata *data = cast(PAMdata*)appdata_ptr;

            pam_response *responses = cast...
October 07
Learn »
...message**) msg, pam_response** resp, void* appdata_ptr) to extern (C) int function(int, const...
October 04
DIP Development »
...index)
{   if(index >= length) assert(0);
    return ptr[index];
}

// With this DIP, it has to...
October 04
DIP Development »
...of code complies. When you have `someString.ptr`, It might be that compiler A figures...
October 03
Learn »
...resp, void *appdata_ptr)
    {
        pam_data *data = cast(pam_data*)appdata_ptr;

        *resp = cast(pam...
October 03
Learn »
...resp, void *appdata_ptr);

struct pam_conv {
    conversation *conv;
    void *appdata_ptr;
}

struct pam_handle...
September 25
DIP Ideas »
...Handler found: {} {}", attr, member.ptr);
                        // LINFO("Param: {}", params[0].stringof.ptr);

                        // get type of the...
September 24
DIP Development »
Maybe `Expression.ptr` can be `@safe` if the compiler can statically prove that `Expression` has...
1 2 3 4 5 6
Next ›   Last »