1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-23 20:23:50 +01:00
This commit is contained in:
J. Nick Koston
2025-10-18 21:47:03 -10:00
parent 8d338610a9
commit f5e5f4ef06

View File

@@ -298,7 +298,6 @@ template<typename T> class FixedVector {
const T &back() const { return data_[size_ - 1]; } const T &back() const { return data_[size_ - 1]; }
size_t size() const { return size_; } size_t size() const { return size_; }
size_t capacity() const { return capacity_; }
bool empty() const { return size_ == 0; } bool empty() const { return size_ == 0; }
/// Access element without bounds checking (matches std::vector behavior) /// Access element without bounds checking (matches std::vector behavior)