Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
spinute committed Sep 10, 2018
1 parent 391fb5f commit 954a8ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/SLList.h
Expand Up @@ -21,7 +21,7 @@ class SLList {
T x;
Node *next;
Node(T x0) {
x = 0;
x = x0;
next = NULL;
}
};
Expand Down

0 comments on commit 954a8ee

Please sign in to comment.