authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-07-03 18:41:52-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-07-03 18:41:52-04:00
logd1cda00b36d687ba2c5df463ffad30c4f7881ee9
tree32adca84ecc67be0e6289740e0a18e2e6b69a710
parent372b615ace0d92d51521b8b0e347d90400f8f7a1
signaturelock-open Commit is signed but in an unrecognized format.

workaround for no equality operator for enum literal and tagged union


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

std/debug.zig+1-1
......@@ -2311,7 +2311,7 @@ fn getDebugInfoAllocator() *mem.Allocator {
23112311}
23122312
23132313/// Whether or not the current target can print useful debug information when a segfault occurs.
2314pub const have_segfault_handling_support = (builtin.arch == .x86_64 and builtin.os == .linux) or builtin.os == .windows;
2314pub const have_segfault_handling_support = (builtin.arch == builtin.Arch.x86_64 and builtin.os == .linux) or builtin.os == .windows;
23152315
23162316/// Attaches a global SIGSEGV handler which calls @panic("segmentation fault");
23172317pub fn attachSegfaultHandler() void {