Hi,
in following example the @property method needs the ()
otherwise compiler error for row 24 is thrown.
I cannot judge, whether the compiler behaves correct or not.
Kind regards
André
---
alias fnError = void delegate(string s);
interface IfSession
{
@property fnError addError();
}
On Sun, 23 Nov 2014 22:51:48 +
Freddy via Digitalmars-d-learn
wrote:
> I know what this does, but can someone explain how it works?
>
> static if((typeof((inout int=0){
>
> })));
>
it was here somewhere. this is, as you can see, a lambda. `typeof()`
can be used even for invalid cod
On Sunday, 23 November 2014 at 19:37:45 UTC, Nordlöw wrote:
I just noticed that
void foo() @safe pure nothrow
{
void[] void_array = new void[3];
auto ubyte_array = cast(ubyte[])void_array;
auto short_array = cast(short[])void_array;
}
compiles but gives a
object.Error@(0): array ca
I know what this does, but can someone explain how it works?
static if((typeof((inout int=0){
})));
I just noticed that
void foo() @safe pure nothrow
{
void[] void_array = new void[3];
auto ubyte_array = cast(ubyte[])void_array;
auto short_array = cast(short[])void_array;
}
compiles but gives a
object.Error@(0): array cast misalignment
because of the
cast(short[])
I'm surpr
Hi,
I haven't seen this announced here so I'm stepping in for those
that might find it to be of interest... should be everyone if you
ask me.
Casey Muratori started, like one week ago into serious stuff, a
daily podcast where he codes a complete, professional-quality
game live and explains
On Friday, 14 November 2014 at 23:29:34 UTC, Satoshi wrote:
Hi, Im using GDC 4.9.0 compiler. I have template classes like
"public class LinkedList(T) {...}" and when I try compile it
together, everything works fine. But when I compile every
source file to separate object file and link it togeth