mirror of
https://github.com/esphome/esphome.git
synced 2026-09-18 18:48:39 +00:00
[ld2450] Use a user provided default constructor for FactoryResetButton (#19182)
This commit is contained in:
@@ -7,7 +7,8 @@ namespace esphome::ld2450 {
|
||||
|
||||
class FactoryResetButton : public button::Button, public Parented<LD2450Component> {
|
||||
public:
|
||||
FactoryResetButton() = default;
|
||||
// User provided, not "= default": `new(p) FactoryResetButton()` would zero-fill .bss that is already zero.
|
||||
FactoryResetButton() {}
|
||||
|
||||
protected:
|
||||
void press_action() override;
|
||||
|
||||
Reference in New Issue
Block a user