A program I'm writing compiles fine at this stage, yet when running, I get this error:
ZeroLink: unknown symbol '__ZN14linkedListTypeIiEC1Ev'
To show where the error occurs, from the following code, "debug1" is printed, but it never reaches "debug2":
ZeroLink: unknown symbol '__ZN14linkedListTypeIiEC1Ev'
To show where the error occurs, from the following code, "debug1" is printed, but it never reaches "debug2":
Code:
int main()
{
int theInput = 0;
cout << "debug1" << endl;
linkedListType<int> myList;
cout << "debug2" << endl;