[ld2412] Use a user provided default constructor for LightOutControlSelect (#19186)

This commit is contained in:
J. Nick Koston
2026-09-16 18:17:03 +12:00
committed by GitHub
parent 711d016a50
commit e77a852599
@@ -7,7 +7,8 @@ namespace esphome::ld2412 {
class LightOutControlSelect final : public select::Select, public Parented<LD2412Component> {
public:
LightOutControlSelect() = default;
// User provided, not "= default": `new(p) LightOutControlSelect()` would zero-fill .bss that is already zero.
LightOutControlSelect() {}
protected:
void control(size_t index) override;