authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-11-04 09:58:02+01:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-11-04 20:33:40+01:00
logc8b6e552991136e3a45095007ae4c3594be02ef9
tree48460bf1fa10fb98e0e9c83a11eb4d1e854147d1
parent2f740fa19ff88981d028289162b3eb469b7f5315

Make the `leb` module available to non-std code


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/debug.zig+1-1
......@@ -17,7 +17,7 @@ const maxInt = std.math.maxInt;
1717const File = std.fs.File;
1818const windows = std.os.windows;
1919
20const leb = @import("debug/leb128.zig");
20pub const leb = @import("debug/leb128.zig");
2121
2222pub const FailingAllocator = @import("debug/failing_allocator.zig").FailingAllocator;
2323pub const failing_allocator = &FailingAllocator.init(global_allocator, 0).allocator;