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;
|
||||
next = nullptr;
|
||||
fValue = NAN;
|
||||
iValue = 0;
|
||||
}
|
||||
|
||||
void LEElement::init(le_action_e action) {
|
||||
|
|
|
@ -77,7 +77,6 @@ public:
|
|||
|
||||
le_action_e action;
|
||||
float fValue;
|
||||
int iValue;
|
||||
|
||||
LEElement *next;
|
||||
};
|
||||
|
|
|
@ -555,7 +555,7 @@ static void showFsio(const char *msg, LEElement *element) {
|
|||
if (msg != NULL)
|
||||
scheduleMsg(logger, "%s:", msg);
|
||||
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;
|
||||
}
|
||||
scheduleMsg(logger, "<end>");
|
||||
|
|
Loading…
Reference in New Issue