Slight whiplash from change to C++, can just use typename now.
@@ -14,9 +14,9 @@ struct List
};
template <typename T>
struct List<T> *append(struct List<T> *lst, T value)
List<T> *append(List<T> *lst, T value)
{
struct List<T> *node;
List<T> *node;
if (lst == NULL)
node = new List<T>;
The note is not visible to the blocked user.