Skip to content

Commit

Permalink
Don't create unused variables returned from TimelineManager::SelectTime
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaulat committed Nov 21, 2024
1 parent 4471843 commit ae91686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scwx-qt/source/scwx/qt/manager/timeline_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ void TimelineManager::Impl::PlaySync()

// Select the time
auto selectTimeStart = std::chrono::steady_clock::now();
auto [volumeTimeUpdated, selectedTimeUpdated] = SelectTime(newTime);
SelectTime(newTime);
auto selectTimeEnd = std::chrono::steady_clock::now();
auto elapsedTime = selectTimeEnd - selectTimeStart;

Expand Down

0 comments on commit ae91686

Please sign in to comment.