[ld2412] Use a user provided default constructor for DistanceResolutionSelect (#19185)

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