diff --git a/list.cpp b/list.cpp index 8c671a1..937e7a7 100644 --- a/list.cpp +++ b/list.cpp @@ -14,9 +14,9 @@ struct List }; template -struct List *append(struct List *lst, T value) +List *append(List *lst, T value) { - struct List *node; + List *node; if (lst == NULL) { node = new List;