constructor

v1
Brett 2022-12-26 00:57:11 -05:00
parent db7f826c04
commit 8b6f2978f5
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ namespace BLT {
struct node {
T t;
node* next;
node(const T& t, node* next){
this->t = t;
this->next = next;
}
};
template<typename T>