diff options
| author | rPatrickWarner <[email protected]> | 2024-05-29 19:50:54 -0700 |
|---|---|---|
| committer | rPatrickWarner <[email protected]> | 2024-05-29 19:50:54 -0700 |
| commit | 4eccd5d702aea5c150cae3b94f8c58a3059b0f79 (patch) | |
| tree | 9aa17aa513dcccbfffaf0aebf41a09eafe94385a /CST 126/Homework3/Node.hpp | |
| parent | added the singly and doubly linked class (diff) | |
| download | homework-1-reecepwarner-Template_Node.tar.xz homework-1-reecepwarner-Template_Node.zip | |
added singly and doubly linked node classesTemplate_Node
Diffstat (limited to 'CST 126/Homework3/Node.hpp')
| -rw-r--r-- | CST 126/Homework3/Node.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/CST 126/Homework3/Node.hpp b/CST 126/Homework3/Node.hpp index de5e53c..e51cb5a 100644 --- a/CST 126/Homework3/Node.hpp +++ b/CST 126/Homework3/Node.hpp @@ -25,9 +25,6 @@ namespace CST126 }; - - - template<typename T> inline Node<T>::Node(const T& data) : _data(data) { }; |