added comment

This commit is contained in:
2026-05-01 14:36:59 +02:00
parent 34cc107eb5
commit 130b1962b3
+8 -1
View File
@@ -153,6 +153,10 @@ void ePowerSwitchEquipment::updateOutletNumber() {
"Outlet number increasing, creating %d new outlet(s)",
epicsOutletNumber - this->numberOfOutlet);
/*
This for loop will only iterate if the condition on top of this
comment is true
*/
for (int i = this->numberOfOutlet; i < epicsOutletNumber; i++) {
std::string epicsSetRecordName;
{
@@ -181,7 +185,10 @@ void ePowerSwitchEquipment::updateOutletNumber() {
fMfe->Msg(MDEBUG, __FUNCTION__,
"Outlet number decreasing, destroying %d outlet(s)",
this->numberOfOutlet - epicsOutletNumber);
/*
This for loop will only iterate if the condition on top of this
comment is true
*/
for (int i = epicsOutletNumber; i < this->numberOfOutlet; i++) {
std::string requestedVarname;