Wsdes:
union value {
const char *string;
}
Try:
union Value {
const char* myString;
}
Note the upper caseing, the spacing after the star, and the
"string" name replaced with something else.
Bye, bearophile
bearophile via Digitalmars-d-learn Tue, 18 Nov 2014 07:46:21 -0800
Wsdes:
union value {
const char *string;
}
Try:
union Value {
const char* myString;
}
Note the upper caseing, the spacing after the star, and the
"string" name replaced with something else.
Bye, bearophile