X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flist.h;fp=src%2Flist.h;h=da0501f6e863cb1d75fe0914c0b0cf8067a0c1a3;hb=20195737e60552ca35c3212db45ece6c4db6bb1d;hp=4e516c13202f66823dea4e58f200e0199d3f7363;hpb=6d13a5166688e470590692eb91c3915ab332fe36;p=ttedit diff --git a/src/list.h b/src/list.h index 4e516c1..da0501f 100755 --- a/src/list.h +++ b/src/list.h @@ -26,9 +26,7 @@ template class Node friend class List; public: -// Node(void) { next = NULL; } Node(void): next(NULL) {} -// Node(const T d, Node * ptr = NULL) { data = d; next = ptr; } Node(const T d, Node * ptr = NULL): data(d), next(ptr) {} private: