December 28, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
thanks | |||
December 28, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
On 12/28/2010 04:09 AM, Stanislav Blinov wrote: Scratch that. I meant "in... | |||
December 28, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...typedef is deprecated in D2. typedef in D2 differs from C/C++ one. What typedef... | |||
December 27, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
how? | |||
December 27, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...would occur. But as Andrei already said, typedef has been deemed deprecated in D2. David | |||
December 27, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...aaaa";
person1.age = 12;
writeln(person1.age);
typedef Human Mankind;
Mankind person2;
person2.name = "bbbb... | |||
December 27, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...you're creating a new type with typedef, and writeln() doesn't know how to... | |||
December 27, 2010 Learn » declaration with typedef | |||
|---|---|---|---|
| |||
...can't compile this code
void main()
{
typedef int number;
number x;
x = 314;
writeln... | |||
December 26, 2010 Learn » Re: Get address of label? | |||
|---|---|---|---|
| |||
...code compiled with GCC 4.5.1:
typedef enum { e1, e2, e3 } E;
int foo2... | |||
December 21, 2010 General » Re: New syntax for string mixins | |||
|---|---|---|---|
| |||
...implement function like that:
PluginInfo* getFunctionsInfo () ;
where:
typedef struct _PluginInfo{
struct _PluginInfo * nextPlugin ;
char* fcnName... | |||
Copyright © 1999-2021 by the D Language Foundation