Posted by Paradox on July 28, 1999 at 14:59:20:
In Reply to: Re: String stuff in C++ posted by hussein on July 28, 1999 at 14:29:28:
: you dont need references if you use a pointer - just keep on passing the pointer each time you call the function, and all instances will be able to dereference and modify the actual string where it is stored ...
But, that doesn't seem to be working for me. I'll change the string (I can see the new value in the debugger), but the new value goes away when I either recurse down, or return up. Now what?