aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework3
diff options
context:
space:
mode:
authorrPatrickWarner <[email protected]>2024-05-15 12:00:08 -0700
committerrPatrickWarner <[email protected]>2024-05-15 12:00:08 -0700
commit1d522f717c71fa1de54cbb047f1b9ccb093cc25c (patch)
tree6d1d32d242a05675640209e9463ea600da673da3 /CST 126/Homework3
parentunit testing homework3 (diff)
downloadhomework-1-reecepwarner-1d522f717c71fa1de54cbb047f1b9ccb093cc25c.tar.xz
homework-1-reecepwarner-1d522f717c71fa1de54cbb047f1b9ccb093cc25c.zip
more unit tests
Diffstat (limited to 'CST 126/Homework3')
-rw-r--r--CST 126/Homework3/SinglyLinkedList.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CST 126/Homework3/SinglyLinkedList.hpp b/CST 126/Homework3/SinglyLinkedList.hpp
index 51d24f9..c877ed1 100644
--- a/CST 126/Homework3/SinglyLinkedList.hpp
+++ b/CST 126/Homework3/SinglyLinkedList.hpp
@@ -11,7 +11,7 @@ template<typename T>
template<typename T>
struct SinglyLinkedList
{
- T _size {0};
+ size_t _size {0};
ListNode<T>* _head{ nullptr };