unused ivalue (#2138)
Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
This commit is contained in:
parent
17554539d1
commit
64c8d7c494
|
@ -74,7 +74,6 @@ void LEElement::clear() {
|
||||||
action = LE_UNDEFINED;
|
action = LE_UNDEFINED;
|
||||||
next = nullptr;
|
next = nullptr;
|
||||||
fValue = NAN;
|
fValue = NAN;
|
||||||
iValue = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LEElement::init(le_action_e action) {
|
void LEElement::init(le_action_e action) {
|
||||||
|
|
|
@ -77,7 +77,6 @@ public:
|
||||||
|
|
||||||
le_action_e action;
|
le_action_e action;
|
||||||
float fValue;
|
float fValue;
|
||||||
int iValue;
|
|
||||||
|
|
||||||
LEElement *next;
|
LEElement *next;
|
||||||
};
|
};
|
||||||
|
|
|
@ -555,7 +555,7 @@ static void showFsio(const char *msg, LEElement *element) {
|
||||||
if (msg != NULL)
|
if (msg != NULL)
|
||||||
scheduleMsg(logger, "%s:", msg);
|
scheduleMsg(logger, "%s:", msg);
|
||||||
while (element != NULL) {
|
while (element != NULL) {
|
||||||
scheduleMsg(logger, "action %d: fValue=%.2f iValue=%d", element->action, element->fValue, element->iValue);
|
scheduleMsg(logger, "action %d: fValue=%.2f", element->action, element->fValue);
|
||||||
element = element->next;
|
element = element->next;
|
||||||
}
|
}
|
||||||
scheduleMsg(logger, "<end>");
|
scheduleMsg(logger, "<end>");
|
||||||
|
|
Loading…
Reference in New Issue