Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #31.8K
2 Posted Topics
Hi all, I'm new in C++ and I encounter a problem with a code I found on this forum. I simply try to add an integer to a Generic Doubly-Linked list. However, when I launch the following code (main function) [CODE]DoubleLinked<int> dlist; dlist.push_back(1);[/CODE] I got the following error : [CODE] … | |
Re: Hi, First of all thank you for this code. I'm new in C++ programming and when I tries to use it by adding a single int I obtain the following error : [CODE]"DoubleLinked<int>::push_back(int)", referenced from: _main in main.o ld: symbol(s) not found collect2: ld returned 1 exit status [/CODE] Here … |
The End.