mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Fixed CustomComponentConstructor::get_component() (#1653)
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com>
This commit is contained in:
parent
2d618768d5
commit
5c359856ff
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class CustomComponentConstructor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component *get_component(int i) { return this->components_[i]; }
|
Component *get_component(int i) const { return this->components_[i]; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::vector<Component *> components_;
|
std::vector<Component *> components_;
|
||||||
|
|
Loading…
Reference in a new issue