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;
next = nullptr;
fValue = NAN;
iValue = 0;
}
void LEElement::init(le_action_e action) {

View File

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

View File

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