unused ivalue (#2138)

Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
This commit is contained in:
Matthew Kennedy 2020-12-25 06:47:33 -08:00 committed by GitHub
parent 17554539d1
commit 64c8d7c494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions

View File

@ -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) {

View File

@ -77,7 +77,6 @@ public:
le_action_e action; le_action_e action;
float fValue; float fValue;
int iValue;
LEElement *next; LEElement *next;
}; };

View File

@ -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>");