Skip to content

Commit

Permalink
Merge pull request #41 from spl/logarray-improvement
Browse files Browse the repository at this point in the history
Various LogArray improvements
  • Loading branch information
matko committed Mar 5, 2020
2 parents 665037d + 72aee3b commit e4c0f9b
Show file tree
Hide file tree
Showing 3 changed files with 649 additions and 212 deletions.
2 changes: 1 addition & 1 deletion src/structure/adjacencylist.rs
Expand Up @@ -315,7 +315,7 @@ where
last_right: _,
} = self;
let fut: Box<dyn Future<Item = BitArrayFileBuilder<_>, Error = std::io::Error> + Send> =
if nums.count == 0 {
if nums.count() == 0 {
Box::new(future::ok(bitarray))
} else {
Box::new(bitarray.push(true))
Expand Down

0 comments on commit e4c0f9b

Please sign in to comment.