File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -305,22 +305,21 @@ double BP5Reader::GetStepApplicationTime()
305
305
else
306
306
{
307
307
// messier logic
308
- StepStatus status;
309
308
double timeoutSeconds = 1.0 ; // arbitrary
310
309
if (m_FirstStep)
311
310
{
312
311
if (!m_StepsCount)
313
312
{
314
313
// not steps was found in Open/Init, check for new steps now
315
- status = CheckForNewSteps (Seconds (timeoutSeconds));
314
+ ( void ) CheckForNewSteps (Seconds (timeoutSeconds));
316
315
}
317
316
}
318
317
else
319
318
{
320
319
if (m_CurrentStep + 1 >= m_StepsCount)
321
320
{
322
321
// we processed steps in memory, check for new steps now
323
- status = CheckForNewSteps (Seconds (timeoutSeconds));
322
+ ( void ) CheckForNewSteps (Seconds (timeoutSeconds));
324
323
}
325
324
}
326
325
if (m_StepsCount > m_CurrentStep)
You can’t perform that action at this time.
0 commit comments