remove unecessary switch

This commit is contained in:
Luna 2020-05-31 21:26:27 -03:00
parent d9358ed794
commit 82dc99d7d5

View file

@ -500,13 +500,10 @@ pub const Lang = struct {
} }
const arg = maybe_arg.?; const arg = maybe_arg.?;
if (cmd_field.field_type != f32)
@compileError("LV2 parameter struct can only have f32 fields");
const argument_value = switch (cmd_field.field_type) { @field(cmd.parameters, cmd_field.name) = try std.fmt.parseFloat(f32, arg);
f32 => try std.fmt.parseFloat(f32, arg),
else => @compileError("LV2 parameter struct can only have f32 fields"),
};
@field(cmd.parameters, cmd_field.name) = argument_value;
} }
} else { } else {
inline for (@typeInfo(command_struct).Struct.fields) |cmd_field| { inline for (@typeInfo(command_struct).Struct.fields) |cmd_field| {