Make StackIterator next public

This commit is contained in:
DrDeano
2020-05-13 16:21:15 +01:00
parent 3715226b9f
commit 2589f7207b

View File

@@ -357,7 +357,7 @@ pub const StackIterator = struct {
else
0;
fn next(self: *StackIterator) ?usize {
pub fn next(self: *StackIterator) ?usize {
var address = self.next_internal() orelse return null;
if (self.first_address) |first_address| {