authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-26 21:37:25-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-26 21:38:04-04:00
log23a82b5ffdc0973e6d62b0171268781f8cbcb70d
treefa5e69518f18c6faf830afdcf95bed95faf599a3
parentebe79329a2c2cf6d74094fb6dfb1b5affde75e24
signaturelock-open Commit is signed but in an unrecognized format.

fix mipsel regression in previous commit

I think that should actually be a compile error, it's a usingnamespace that depends on itself. This workaround is fine for now.

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

lib/std/os/bits/linux.zig+1-1
......@@ -362,7 +362,7 @@ pub const AF_QIPCRTR = PF_QIPCRTR;
362362pub const AF_SMC = PF_SMC;
363363pub const AF_MAX = PF_MAX;
364364
365pub usingnamespace if (!@hasDecl(@This(), "SO_DEBUG"))
365pub usingnamespace if (!is_mips)
366366 struct {
367367 pub const SO_DEBUG = 1;
368368 pub const SO_REUSEADDR = 2;