diff options
Diffstat (limited to 'Inclass 10/Node.h')
| -rw-r--r-- | Inclass 10/Node.h | 2 |
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; }; |