Remove try.

Ignore critierion folder.
This commit is contained in:
2018-01-10 22:27:02 +01:00
parent 232d76ef36
commit f37cc5efa6
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,5 @@
/target/
Cargo.lock
/.criterion/

View File

@@ -402,7 +402,7 @@ impl<'de> Deserialize<'de> for BitSet {
{
let mut values = BitSet::new();
while let Some(value) = try!(seq.next_element()) {
while let Some(value) = seq.next_element()? {
BitSet::insert(&mut values, value);
}