mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
Merge pull request #5337 from DrDeano/master
Make StackIterator next public
This commit is contained in:
commit
be2b8d58ef
@ -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| {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user