Search

February 08, 2007
General »
...it's _completely_ different?  This compiles:

----------
typedef void* CFTypeRef;
typedef CFTypeRef CFStringRef;

void func(CFTypeRef...
February 07, 2007
General »
...was hoping I could do this:

typedef void* CFTypeRef;
typedef CFTypeRef CFStringRef;

class DCFObject
{
  CFTypeRef...
February 05, 2007
Learn »
...was hoping I could do this:

typedef void* CFTypeRef;
typedef CFTypeRef CFStringRef;

class DCFObject
{
  CFTypeRef...
February 04, 2007
Learn »
...a small example but I defined
typedef	uint	NodeNbr;
typedef	NodeNbr	ObjAddr;

and then got...
February 04, 2007
Learn »
...ostypes.d:

module ostypes;

import std.string;

typedef int OSStatus;

char[] toString(OSStatus s)
{
    return...
February 03, 2007
Learn »
...for overloaded functions. I have a type:

typedef int OSStatus;

and I want to call...
February 01, 2007
Issues »
...order matter, version block change something
                    with typedef, and another template bug.
           Product: D
           Version...
February 01, 2007
Issues »
...typedef foo bar;
# typedef bar foo;
#

test case: http://dstress.kuehne.cn/nocompile/t/typedef...
February 01, 2007
General »
...alias would have to behave like a typedef: given
alias (a*b) X;
alias (a...
February 01, 2007
General »
...2]," ",MM[4][4]);
}

const SIZE = 30;

typedef int[SIZE][SIZE] TMatrix;

void mkmatrix(int...
244 245 246 247 248 249 250 251 252 253 254
Next ›   Last »