So I have a linked list assignment for my C++ class, I have it pretty much done but I am having trouble with the provided test files. When I try compiling I get these errors
/test_front_push_front.cpp:11: error: invalid use of template-name 'cs33001::list' without an argument list
/test_front_push_front.cpp: In function 'int test_push_front_1()':
/test_front_push_front.cpp:41: error: 'LIST' was not declared in this scope
/test_front_push_front.cpp:41: error: expected `;' before 'mm'
/test_front_push_front.cpp:46: error: 'mm' was not declared in this scope
/test_front_push_front.cpp:53: error: 'mm' was not declared in this scope
here are some links to my files including one test file, if I can get it working for one test file it shouldnt be a problem for the rest.
list.hpp =
http://pastebin.com/TVSdccJQ
list.cpp =
http://pastebin.com/4P8n6LWY
test_front_push_front.cpp =
http://pastebin.com/SeJHJFYZ
Thanks in advance for any help. I am not supposed to change anything in the test files so the issue should be something I did in either list.hpp or list.cpp