Search

November 14, 2006
General »
Of course, I forgot about deallocaion, so allocators would be defined as something like:

// somewhere...
November 14, 2006
General »
I like the above suggestions. After thinking about it, I'm beginning to wonder if...
November 14, 2006
General »
Yes.
November 14, 2006
General »
It used to be the only way that worked. Early C compilers couldn't cope...
November 14, 2006
General »
Confusing.. I thought const in D meant really 'constant'. If a const in a function...
November 14, 2006
General »
int foo(int x)
{
    static const i = x;	// error, x is not const
    const j...
November 14, 2006
General »
a static in a class is well defined. so is a const. for me 'static...
November 13, 2006
General »
In a function?
In a class?

--bb
November 13, 2006
General »
Does it really make sense to have the programmer decide this distinction? A global const...
November 13, 2006
General »
Hrm... so the compiler would have to do something like generate a dummy variable referencing...
111 112 113 114 115 116 117 118 119 120 121
Next ›   Last »