zig

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

commit fb96c3e73ec840e5c46bf5080aa9ffc90784f6b9 (tree)
parent 4183c6f1a52959ab5eef540c8eec1758079554eb
Author: Josh Wolfe <thejoshwolfe@gmail.com>
Date:   Sat, 23 Dec 2017 21:47:04 -0700

debug needs to export FailingAllocator

Diffstat:
Mstd/debug/index.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/std/debug/index.zig b/std/debug/index.zig @@ -8,6 +8,8 @@ const DW = std.dwarf; const ArrayList = std.ArrayList; const builtin = @import("builtin"); +pub use @import("./failing_allocator.zig"); + error MissingDebugInfo; error InvalidDebugInfo; error UnsupportedDebugInfo;