diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-01-23 11:00:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-01-23 11:00:26 +0100 |
commit | f82bd032a41b1c2171fc47bb76c3c51c3439ccd4 (patch) | |
tree | f4614b6121ab11ba9fb19508f2ed60ccb46d4b90 | |
parent | m (diff) | |
download | algorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.gz algorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.bz2 algorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/datastructures/linkedlists/sentinel-template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/sentinel-template b/src/datastructures/linkedlists/sentinel-template index 3decdbc..9de6019 100644 --- a/src/datastructures/linkedlists/sentinel-template +++ b/src/datastructures/linkedlists/sentinel-template @@ -67,7 +67,7 @@ { this.edge = new Node(null); this.edge.next = this.edge; -(( with_prev )) && +£>(( with_prev )) && this.edge.previous = this.edge; } |