I'm trying to create a hashtable with chaining as the collision management method. I have a custom list to handle that. Here's the error I am running into:
error: constructor for 'Node' must explicitly initialize the member 'content' which does not have a default constructor
Constructor
Node(const Y &content) {
this->content = content;
this->next = nullptr;
this->prev = nullptr;
}