Merge pull request #5337 from DrDeano/master

Make StackIterator next public
This commit is contained in:
Vexu 2020-05-13 18:32:01 +03:00 committed by GitHub
commit be2b8d58ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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| {