remove unecessary switch

This commit is contained in:
Luna 2020-05-31 21:26:27 -03:00
parent d9358ed794
commit 82dc99d7d5
1 changed files with 3 additions and 6 deletions

View File

@ -500,13 +500,10 @@ pub const Lang = struct {
}
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) {
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;
@field(cmd.parameters, cmd_field.name) = try std.fmt.parseFloat(f32, arg);
}
} else {
inline for (@typeInfo(command_struct).Struct.fields) |cmd_field| {