]> Shamusworld >> Repos - ttedit/blobdiff - src/list.h
Too many changes between last commit and here. I forgot that
[ttedit] / src / list.h
index 4e516c13202f66823dea4e58f200e0199d3f7363..da0501f6e863cb1d75fe0914c0b0cf8067a0c1a3 100755 (executable)
@@ -26,9 +26,7 @@ template <class T> class Node
        friend class List<T>;\r
 \r
        public:\r
-//             Node(void)                         { next = NULL; }\r
                Node(void): next(NULL) {}\r
-//             Node(const T d, Node * ptr = NULL) { data = d;  next = ptr; }\r
                Node(const T d, Node * ptr = NULL): data(d), next(ptr) {}\r
 \r
        private:\r