Page 2 of 2
Posted: Sat May 01, 2004 9:03 am
by Shopro
Shannara:
I'm using a Structure full of strings in my linked lists, but haven't had any problems yet. How bad is this? Is it a bug that is going to be fixed?
-Shopro
Posted: Sat May 01, 2004 4:04 pm
by Shannara
Ref:
viewtopic.php?t=10639&highlight=memory
This bug have not been fixed yet, and have been confirmed. I try to stay away from strings in linked lists as well, though I have ran into this problem too.. ergh.
..
Posted: Sat May 01, 2004 4:17 pm
by NoahPhense
Shannara wrote:Ref:
viewtopic.php?t=10639&highlight=memory
This bug have not been fixed yet, and have been confirmed. I try to stay away from strings in linked lists as well, though I have ran into this problem too.. ergh.
So your advice is to use structures inside of arrays. And they are safe
with strings?
- np
Posted: Sat May 01, 2004 5:33 pm
by Shannara
I try not to give advice

But yeah. Or.... if you have a structure in linked lists that have a few string members, just seperate the structure into two, one for strings, the other for other. And stick the string structure in an array, using the array's index as a Key field in the other structure

A horrible work around, and slower, but....