m2mer
Results
1
issues of
m2mer
template T LinkedList::get(int index){ ListNode *tmp = getNode(index); return (tmp ? tmp->data : T()); } no matter success or not, an instance of T is returned, so how to judge?