mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
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.
This commit is contained in:
parent
ebe79329a2
commit
23a82b5ffd
1 changed files with 1 additions and 1 deletions
|
|
@ -362,7 +362,7 @@ pub const AF_QIPCRTR = PF_QIPCRTR;
|
||||||
pub const AF_SMC = PF_SMC;
|
pub const AF_SMC = PF_SMC;
|
||||||
pub const AF_MAX = PF_MAX;
|
pub const AF_MAX = PF_MAX;
|
||||||
|
|
||||||
pub usingnamespace if (!@hasDecl(@This(), "SO_DEBUG"))
|
pub usingnamespace if (!is_mips)
|
||||||
struct {
|
struct {
|
||||||
pub const SO_DEBUG = 1;
|
pub const SO_DEBUG = 1;
|
||||||
pub const SO_REUSEADDR = 2;
|
pub const SO_REUSEADDR = 2;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue