April 03, 2003 Undefined symbol | ||||
---|---|---|---|---|
| ||||
Attempting to build struct s { uint one; ushort two; } s[10] S; int main() { S.sort; return( 0 ); } gives Error 42: Symbol Undefined __init_TypeInfo_S3t_s Is there a way around this other than providing my own sort? |
April 03, 2003 Re: Undefined symbol | ||||
---|---|---|---|---|
| ||||
Posted in reply to Steve Adams | You don't need your own sort, but you do need your own TypeInfo. See the examples (ti_*.d) in \dmd\src\phobos for how to do it. Someday, D will generate these automatically. "Steve Adams" <adamss@ascinet.com> wrote in message news:b6hk6a$99t$1@digitaldaemon.com... > Attempting to build > > struct s { > uint one; > ushort two; > } > > s[10] S; > > int main() > { > S.sort; > return( 0 ); > } > > gives > > Error 42: Symbol Undefined __init_TypeInfo_S3t_s > > Is there a way around this other than providing my own sort? > > > |
Copyright © 1999-2021 by the D Language Foundation