Skip to content

Commit

Permalink
Removed unused parameter in exists() in the int library
Browse files Browse the repository at this point in the history
  • Loading branch information
o0ragman0o committed Jan 15, 2018
1 parent 8118aa5 commit 40f2cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LibCLL.sol
Expand Up @@ -140,8 +140,8 @@ library LibCLLi {

// n: node id d: direction r: return node id

// Return existential state of a node. n == HEAD returns list existence.
function exists(CLL storage self, int n)
// Return existential state of a list.
function exists(CLL storage self)
internal view returns (bool)
{
if (self.cll[HEAD][PREV] != HEAD || self.cll[HEAD][NEXT] != HEAD)
Expand Down

0 comments on commit 40f2cd2

Please sign in to comment.