mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-21 19:26:09 +03:00
Remove redundant inline
key
This breaks in zig version `0.12.0-dev.1808+69195d0cd` (current head)
This commit is contained in:
@ -8,7 +8,7 @@ pub const Key = key: {
|
|||||||
const field_infos = std.meta.fields(Config);
|
const field_infos = std.meta.fields(Config);
|
||||||
var enumFields: [field_infos.len]std.builtin.Type.EnumField = undefined;
|
var enumFields: [field_infos.len]std.builtin.Type.EnumField = undefined;
|
||||||
var i: usize = 0;
|
var i: usize = 0;
|
||||||
inline for (field_infos) |field| {
|
for (field_infos) |field| {
|
||||||
// Ignore fields starting with "_" since they're internal and
|
// Ignore fields starting with "_" since they're internal and
|
||||||
// not copied ever.
|
// not copied ever.
|
||||||
if (field.name[0] == '_') continue;
|
if (field.name[0] == '_') continue;
|
||||||
|
Reference in New Issue
Block a user