Hi everyone I am having a bit of an issue implementing a template linked list class with a merge member function.
The merge should take another linked list object(it should already be in order) and merge it with the base object(also in order) to produce a single linked list.
I initially made the class without templates and was able to make the merge function correctly. Unfortunately I am very poor with the template keyword and botched my program up.
Here is the relevant code if you think its necessary I can upload all of it.