aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise 9/Node.h
diff options
context:
space:
mode:
authorAsahel <[email protected]>2024-02-12 09:39:25 -0800
committerAsahel <[email protected]>2024-02-12 09:39:25 -0800
commit35721098260cec8410d63e040546dba3ee81ec75 (patch)
tree24dd0cd9b37f7f7ce592df178a97dae8972a0b45 /InClassExercise 9/Node.h
parentNot sure if I commited. Making sure. (diff)
downloadin-class-exercise-9-asahellt-main.tar.xz
in-class-exercise-9-asahellt-main.zip
Fixed error!HEADmain
Diffstat (limited to 'InClassExercise 9/Node.h')
-rw-r--r--InClassExercise 9/Node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/InClassExercise 9/Node.h b/InClassExercise 9/Node.h
index b0ba7cd..0096e53 100644
--- a/InClassExercise 9/Node.h
+++ b/InClassExercise 9/Node.h
@@ -2,7 +2,7 @@
#define NODE_H
struct Node {
- int data;
+ int _num;
Node* _next;
};