commit 2589f7207baef686dff969ccf2bd596a16b5012e (tree)
parent 3715226b9fd0c2d097fdd47935071b7ef30233e9
Author: DrDeano <ed.dean515@gmail.com>
Date: Wed, 13 May 2020 16:21:15 +0100
Make StackIterator next public
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
@@ -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| {