We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zigでは,サイズが0の配列は,定義できるがアクセスできないという制限(ziglang/zig#5515 )があるため,それを回避するコードにしている。例えば,以下のコード。
// Zigの制限の回避:BIND_CFG != nullの場合に,サイズ0の配列が // 出ないようにする pub export var _kernel_semcb_table: [if (option.BIND_CFG == null or tnum_sem > 0) tnum_sem else 1]SEMCB = undefined;
The text was updated successfully, but these errors were encountered:
hiroakitakada
No branches or pull requests
Zigでは,サイズが0の配列は,定義できるがアクセスできないという制限(ziglang/zig#5515 )があるため,それを回避するコードにしている。例えば,以下のコード。
The text was updated successfully, but these errors were encountered: