Commit c8b6e55299

LemonBoy <thatlemon@gmail.com>
2019-11-04 09:58:02
Make the `leb` module available to non-std code
1 parent 2f740fa
Changed files (1)
lib
lib/std/debug.zig
@@ -17,7 +17,7 @@ const maxInt = std.math.maxInt;
 const File = std.fs.File;
 const windows = std.os.windows;
 
-const leb = @import("debug/leb128.zig");
+pub const leb = @import("debug/leb128.zig");
 
 pub const FailingAllocator = @import("debug/failing_allocator.zig").FailingAllocator;
 pub const failing_allocator = &FailingAllocator.init(global_allocator, 0).allocator;