aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/Node.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-08 15:55:18 -0800
committerConnor McDowell <[email protected]>2024-02-08 15:55:18 -0800
commit2049a2c87f64bc3c4f9db66ceac0bac44ccb8b99 (patch)
tree7632866bc847ba8d66d86ce6c21d1e73851fc7e5 /Inclass 10/Node.h
parentfiles and functions set up (diff)
downloadin-class-exercise-10-connormcdowell275-2049a2c87f64bc3c4f9db66ceac0bac44ccb8b99.tar.xz
in-class-exercise-10-connormcdowell275-2049a2c87f64bc3c4f9db66ceac0bac44ccb8b99.zip
i literally have NO idea what to do. all i get is the addresses when the assignment is asking for the _num values to be swapped BUT NUM ISNT EVEN PART OF THE FUCKING STRUCTS
Diffstat (limited to 'Inclass 10/Node.h')
-rw-r--r--Inclass 10/Node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Inclass 10/Node.h b/Inclass 10/Node.h
index 8c11984..abfe605 100644
--- a/Inclass 10/Node.h
+++ b/Inclass 10/Node.h
@@ -5,7 +5,7 @@
struct Node
{
- int _data;
+ int data;
Node* next;
};