mirror of
https://github.com/ziglang/zig.git
synced 2026-02-05 06:03:38 +00:00
7 lines
180 B
Zig
7 lines
180 B
Zig
const feature = @import("std").target.feature;
|
|
const CpuInfo = @import("std").target.cpu.CpuInfo;
|
|
|
|
pub const EmptyCpu = enum {
|
|
pub const cpu_infos = [0]CpuInfo(@This()) {};
|
|
};
|