mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-06-05 20:38:27 +02:00
Unify 'nullptr' initalization of class members; (#3805)
This commit is contained in:
@@ -176,7 +176,7 @@ template<typename... Ts> class Action {
|
||||
return this->next_->is_running();
|
||||
}
|
||||
|
||||
Action<Ts...> *next_ = nullptr;
|
||||
Action<Ts...> *next_{nullptr};
|
||||
|
||||
/// The number of instances of this sequence in the list of actions
|
||||
/// that is currently being executed.
|
||||
|
||||
Reference in New Issue
Block a user