Commit 2589f7207b

DrDeano <ed.dean515@gmail.com>
2020-05-13 17:21:15
Make StackIterator next public
1 parent 3715226
Changed files (1)
lib
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| {