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
Linked Lists or Arrays
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.
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.
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
..
So your advice is to use structures inside of arrays. And they are safeShannara 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.
with strings?
- np
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....

