User Profile
Collapse
-
Casting to void*.
Hello :)
well as the title says, i have a problem with casting to void*.
so, I made a linked list class at c++. heres the list :
class LinkedList
{
struct LinkedListObjec t
{
void* data;
LinkedListObjec t *nxt_obj;
}*list_head;
void AddObj(void* data);
}
So, at the AddObj function, I have a little problem....
No activity results to display
Show More
Leave a comment: