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