zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit be2b8d58ef9459d3e6a4c294be4fd4b82c71bdb1 (tree)
parent 3715226b9fd0c2d097fdd47935071b7ef30233e9
Author: Vexu <git@vexu.eu>
Date:   Wed, 13 May 2020 18:32:01 +0300

Merge pull request #5337 from DrDeano/master

Make StackIterator next public
Diffstat:
Mlib/std/debug.zig | 2+-
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| {