D - typedef vs alias
- Pavel Minayev (6/6) Dec 27 2001 D seems to dislike typedefs. The following works:
- Pavel Minayev (2/2) Dec 27 2001 2Walter: by the way, this could be cause of compiler
D seems to dislike typedefs. The following works:
alias void* HANDLE;
HANDLE cin, cout, cerr;
...while the following crashes the compiler:
typedef void* HANDLE;
HANDLE cin, cout, cerr;
Dec 27 2001
2Walter: by the way, this could be cause of compiler crash on the module I've sent you...
Dec 27 2001








"Pavel Minayev" <evilone omen.ru>