Hi,
I current I have a vector <void*> that I need to populate with values, stored as char*. Is there a way to convert to void*, then back to char* whenever needed?
I have tried casting and using static/reinterpret_cast but when I try to output (converting from void* back to char* that is), I get a null value - unfortunately I can't change the vector to vector<char*> or anything, I have to use it as it is :(
Any help would be much appreciated, thanks :)