aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/Node.h
diff options
context:
space:
mode:
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;
};