From 56860da4af001de4a71c87ed8e98e4e85c6a2c1d Mon Sep 17 00:00:00 2001 From: proddy Date: Wed, 20 Apr 2022 18:06:26 -0400 Subject: [PATCH] remove TODO on sorting --- src/devices/thermostat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index ec265050d..f2dc222a4 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -346,7 +346,7 @@ std::shared_ptr Thermostat::heating_circuit(std::sha heating_circuits_.push_back(new_hc); // sort based on hc number so there's a nice order when displaying - // TODO temporarily commented out the HC sorting until I'm 100% sure the return object still references the newly created object + // NOTE temporarily commented out the HC sorting until I'm 100% sure the return object still references the newly created object // not sure if new_hc and heating_circuits_.back() will still reference the new HC after its sorted - to check! // std::sort(heating_circuits_.begin(), heating_circuits_.end());