Merge pull request #12 from Nomy1/fix-util-error

Resolve use of undeclared identifier 'slice' error
master
prime31 3 years ago committed by GitHub
commit 9b467c6ae8

@ -43,7 +43,7 @@ pub fn ReverseSliceIterator(comptime T: type) type {
}
pub fn reset(self: *@This()) void {
self.index = slice.len;
self.index = self.slice.len;
}
};
}

Loading…
Cancel
Save