Search

January 30, 2015
Learn »
...was being assigned to like so.

string ret = thing.getString();

Apparently that does not work...
January 28, 2015
Learn »
...Cmd ret;
		TMemoryBuffer trans = new TMemoryBuffer(data);
		auto prot = new TCompactProtocol!TMemoryBuffer(trans);
		ret.read...
January 23, 2015
General »
Loosely-related, compiling

...
auto ret = arr.filter!(myFilter());
...

I got:

Error: closures are not yet...
January 20, 2015
Learn »
...maximum() const {
	auto ret = this;
			
	while (ret.right_) {
	    ret = ret.right_;
	}
			
	return ret;
    }
}
```

It failed...
January 05, 2015
Issues »
...d(760): Error: cannot modify immutable
expression ret.__expand_field_0
bug.d(5): Error...
December 28, 2014
LDC »
...void main() {
	int ret = add(1, 2);
	writeln("1 + 2 = " ~ to!string(ret));
}
</main.d...
December 24, 2014
Learn »
...length] ret;
        foreach (i, bit; Bits)
        {
            if (mixin(isSet!bit))
            {
                ret[i] = bit;
            }
        }
		
		return ret...
December 17, 2014
Learn »
...pop    ebx
 8084ecd:       c9                      leave
 8084ece:       c3                      ret



Before the call to leave, which puts...
December 17, 2014
Learn »
...is a ref, so need to dig...

        ret;
    }
}

try and see ;) Actually it may be...
December 16, 2014
General »
...bounds, and even modified versions of call/ret/jump.

​They are working in the ABI...
62 63 64 65 66 67 68 69 70 71 72 73
Next ›   Last »