use vector instead of dequeue for memory optimization

This commit is contained in:
proddy
2025-10-19 16:10:15 +02:00
parent 02b486ea80
commit 16f7a454db
2 changed files with 17 additions and 17 deletions

View File

@@ -222,7 +222,7 @@ class EMSESP {
static void scan_devices();
static void clear_all_devices();
static std::deque<std::unique_ptr<EMSdevice>> emsdevices;
static std::vector<std::unique_ptr<EMSdevice>> emsdevices;
// services
static Mqtt mqtt_;