diff --git a/Jupiter/SLList.h b/Jupiter/SLList.h index 85e1f04..cfbaa7d 100644 --- a/Jupiter/SLList.h +++ b/Jupiter/SLList.h @@ -177,7 +177,7 @@ template T *Jupiter::SLList::remove(size_t index) return r; } -template T *Jupiter::SLList::removeNext(Jupiter::SLList::Node *data) +template T *Jupiter::SLList::removeNext(Node *data) { Jupiter::SLList::Node *t = data->next; if (t == nullptr) return nullptr;